.single-product-page {
    min-height: 100vh;
    padding: 150px 0 50px;
    position: relative;
    z-index: 2;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--honey-primary);
}

.breadcrumbs .separator {
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumbs .current {
    color: var(--honey-primary);
}

.product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 100px;
}

.product-gallery {
    position: relative;
}

.gallery-container {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 10px;
}

.gallery-thumbnails {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 5px;
}

.gallery-thumbnails::-webkit-scrollbar {
    width: 6px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: var(--honey-primary);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.gallery-thumbnails::-webkit-scrollbar-thumb:hover {
    background: var(--honey-primary);
}

.gallery-thumbnails {
    scrollbar-width: thin;
    scrollbar-color: var(--honey-primary) rgba(0, 0, 0, 0.2);
}

.thumbnail {
    width: 100px;
    height: 100px;
    background: var(--cyber-medium);
    border: 2px solid var(--glass-border);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumbnail:hover {
    border-color: var(--honey-primary);
}

.thumbnail:hover::before {
    opacity: 0.5;
}

.thumbnail.active {
    border-color: var(--honey-primary);
    box-shadow: 0 0 25px rgba(255, 184, 0, 0.4);
}

.thumbnail.active::before {
    opacity: 0.3;
}

.thumbnail img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    padding: 5px;
    transition: transform 0.3s ease;
}

.thumbnail:hover img {
    transform: scale(1.1);
}

.gallery-main {
    position: relative;
    background: var(--cyber-medium);
    border: 2px solid var(--glass-border);
    border-radius: 25px;
    overflow: hidden;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    opacity: 0.1;
}

.main-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.3));
    transition: transform 0.4s ease;
}

.main-zoom-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.main-zoom-btn:hover {
    background: var(--gradient-gold);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.4);
}

.main-zoom-btn i {
    font-size: 18px;
    color: var(--cyber-black);
}

.product-main-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 10px;
    z-index: 10;
}

.product-main-badge.novo {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.product-main-badge.trend {
    background: linear-gradient(135deg, #ff3366, #ff0044);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.5);
}

.product-main-badge.outlet {
    background: linear-gradient(135deg, #FFB800, #FF8800);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 184, 0, 0.5);
}

.product-details {
    position: relative;
}

.product-code {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
}

.product-code span {
    color: var(--honey-primary);
    font-weight: 600;
}

.product-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.product-short-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 30px;
}

.product-price-section {
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.product-main-price {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--honey-primary);
    text-shadow: 0 0 20px rgba(255, 184, 0, 0.4);
}

.product-old-price {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.product-discount-badge {
    padding: 8px 15px;
    background: linear-gradient(135deg, #ff3366, #ff0044);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.4);
}

.price-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.price-note a {
    color: var(--honey-primary);
    text-decoration: underline;
}

.tax-info {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 10px;
}

.availability-section {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 15px;
    margin-bottom: 30px;
}

.availability-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.availability-icon i {
    font-size: 22px;
    color: #000;
}

.availability-text {
    flex: 1;
}

.availability-text strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #00ff88;
    margin-bottom: 5px;
}

.availability-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.cart-section {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
}

.qty-btn {
    width: 50px;
    height: 55px;
    background: transparent;
    border: none;
    color: var(--honey-primary);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: var(--glass-gold);
}

.qty-input {
    width: 70px;
    height: 55px;
    background: transparent;
    border: none;
    border-left: 1px solid var(--glass-border);
    border-right: 1px solid var(--glass-border);
    text-align: center;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.qty-input:focus {
    outline: none;
}

.btn-add-to-cart {
    flex: 1;
    height: 55px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 15px;
    color: var(--cyber-black);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.btn-add-to-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 184, 0, 0.5);
}

.btn-add-to-cart i {
    font-size: 18px;
}

.product-main .product-actions {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.product-main .action-btn {
    height: 50px;
    width: 300px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.product-main #single-remove-from-wishlist{
    border-color: var(--honey-primary);
    background: var(--glass-gold);
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 184, 0, 0.4);
}
.product-main .action-btn:hover {
    background: var(--glass-gold);
    border-color: var(--honey-primary);
    color: #fff;
    transform: translateY(-2px);
}

.product-main .action-btn i {
    font-size: 16px;
    color: var(--honey-primary);
}

.product-meta {
    padding: 25px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    margin-bottom: 30px;
}

.meta-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.meta-item .inStock{
    color: #00ff88;
    font-weight: 600;
}
.meta-item .outOfStock{
    color: #ff3366;
    font-weight: 600;
}
.meta-item .preOrder, .meta-item .onRequest{
    color: #ffcc00;
    font-weight: 600;
}
.meta-item:last-child {
    border-bottom: none;
}

.meta-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.meta-value {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.social-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 42px;
    height: 42px;
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--gradient-gold);
    border-color: var(--honey-primary);
    color: var(--cyber-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 184, 0, 0.3);
}

.share-btn i {
    font-size: 16px;
}

.product-tabs-section {
    margin-bottom: 100px;
}

.tabs-navigation {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--glass-border);
    justify-content: center;
}

.tab-btn {
    padding: 18px 35px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-btn:hover {
    color: rgba(255, 255, 255, 0.9);
}

.tab-btn.active {
    color: var(--honey-primary);
}

.tab-btn.active::after {
    opacity: 1;
}

.tabs-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-description-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}
.product-description-text br + br {
    display: block;
    margin-top: 10px;
}
.description-content {
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
}

.description-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: var(--honey-primary);
    margin-bottom: 20px;
}

.description-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 15px;
}

.description-content ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.description-content ul li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
}

.description-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--honey-primary);
}

.declaration-content {
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
}

.declaration-table {
    width: 100%;
}

.declaration-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.declaration-table tr:last-child {
    border-bottom: none;
}

.declaration-table td {
    padding: 15px 0;
    font-size: 15px;
}

.declaration-table td:first-child {
    color: rgba(255, 255, 255, 0.6);
    width: 40%;
}

.declaration-table td:last-child {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.related-products-section {
    margin-bottom: 100px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-top: 10px;
}

.related-products-section .related-products-slider-container {
    position: relative;
    margin-top: 60px;
}

.related-products-section .products-grid {
    overflow: hidden;
    display: grid;
    position: relative;
    width: 100%;
    max-width: calc(280px * 4 + 30px * 3);
    margin: 0 auto;
    padding-top: 30px;
}

.related-products-section .products-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.related-products-section .product-card {
    width: 280px;
    position: relative;
    background: var(--cyber-medium);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.related-products-section .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.related-products-section .product-card:hover {
    transform: translateY(-15px);
    border-color: var(--honey-primary);
    box-shadow: 0 30px 60px rgba(255, 184, 0, 0.15), 0 0 100px rgba(255, 184, 0, 0.1);
    z-index: 10;
}

.related-products-section .product-card:hover::before {
    opacity: 1;
}

.related-products-section .product-image-wrapper {
    position: relative;
    height: 280px;
    background: linear-gradient(180deg, var(--cyber-light) 0%, var(--cyber-medium) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.related-products-section .product-image-wrapper a{
    height: 100%;
}
.related-products-section .product-badge {
    padding: 8px 18px;
    border-radius: 8px;
    z-index: 10;
}

.related-products-section .product-badge.novo {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.related-products-section .product-badge.trend {
    background: linear-gradient(135deg, #ff3366, #ff0044);
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.4);
    animation: pulseBadge 2s ease-in-out infinite;
}

.related-products-section .product-badge.sold-out {
    background: linear-gradient(135deg, #666, #444);
    color: #fff;
}
.related-products-section .product-badge.pre-order{
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: #FFF;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.4);
}
.related-products-section .no-products-message{
    text-align: center;
    padding: 50px;
    border-radius: 8px;
    margin-top: 30px;
}
.related-products-section .no-products-message i{
    font-size: 70px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}
.related-products-section .no-products-message h2{
    font-size: 24px;
    margin-bottom: 10px;
}
.related-products-section .no-products-message p{
    font-size: 16px;
    color: #666666;
}
@keyframes pulseBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.related-products-section .products-grid a .product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.related-products-section .product-card:hover .product-image {
    transform: scale(1.1) translateY(-10px);
    filter: drop-shadow(0 30px 50px rgba(255, 184, 0, 0.3));
}

.related-products-section .product-actions {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    display: flex;
    gap: 15px;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.related-products-section .product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.related-products-section .action-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.related-products-section .action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.related-products-section .action-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 184, 0, 0.4);
}

.related-products-section .action-btn:hover::before {
    transform: translateY(0);
}

.related-products-section .action-btn i {
    font-size: 18px;
    color: var(--cyber-black);
    position: relative;
    z-index: 1;
}
.related-products-section .product-info-container{
    height: calc(100% - 280px);
}
.related-products-section .product-info {
    padding: 25px;
    text-align: center;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.related-products-section .product-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
    transition: transform 0.5s ease;
}

.related-products-section .product-card:hover .product-info::before {
    transform: translateX(-50%) scaleX(1);
}

.related-products-section .product-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.related-products-section .product-card:hover .product-title {
    color: #fff;
}

.related-products-section .product-price {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--honey-primary);
    text-shadow: 0 0 20px rgba(255, 184, 0, 0.3);
}
.related-products-section .products-grid .product-short-description{
    display: none;
}
.related-products-section .products-grid .no-image-icon {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: var(--cyber-dark);
}

.related-products-section .products-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--cyber-medium) 0%, var(--cyber-dark) 100%);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.related-products-section .products-slider-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.related-products-section .products-slider-arrow:hover {
    border-color: var(--honey-primary);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 20px 50px rgba(255, 184, 0, 0.5), 0 0 60px rgba(255, 184, 0, 0.3);
}

.related-products-section .products-slider-arrow:hover::before {
    opacity: 1;
}

.related-products-section .products-slider-arrow i {
    font-size: 24px;
    color: var(--honey-primary);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.related-products-section .products-slider-arrow:hover i {
    color: var(--cyber-black);
    transform: scale(1.2);
}

.related-products-section .products-slider-arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 184, 0, 0.2);
    transition: all 0.5s ease;
}

.related-products-section .products-slider-arrow:hover::after {
    width: 100%;
    height: 100%;
}

.related-products-section .products-prev {
    left: -90px;
}

.related-products-section .products-next {
    right: -90px;
}

@keyframes borderPulse {
    0%, 100% {
        border-color: var(--glass-border);
    }
    50% {
        border-color: rgba(255, 184, 0, 0.5);
    }
}

.related-products-section .products-slider-arrow {
    animation: borderPulse 3s ease-in-out infinite;
}

.related-products-section .products-slider-arrow:hover {
    animation: none;
}

.main-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.main-lightbox-container {
    position: relative;
    max-height: 80vh;
    max-width: 70%;
    animation: zoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    display: flex;
    justify-content: center;
    border-radius: 10px;
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.main-lightbox-image {
    max-width: 100%;
    object-fit: contain;
}

.main-lightbox-close {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.main-lightbox-close:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.6);
}

.main-lightbox-close i {
    font-size: 20px;
    color: var(--cyber-black);
}

.main-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.main-lightbox-nav:hover {
    background: var(--gradient-gold);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.5);
}

.main-lightbox-nav i {
    font-size: 18px;
    color: var(--cyber-black);
}

.main-lightbox-prev {
    left: -70px;
}

.main-lightbox-next {
    right: -70px;
}

.main-lightbox-counter {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 22px;
    background: var(--glass-white);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
}

.main-lightbox-counter span {
    color: var(--honey-primary);
}
.no-image i{
    font-size: 100px;
}
.variants-section {
    margin-bottom: 30px;
    padding: 0;
    border-radius: 20px;
}

.variant-group {
    margin-bottom: 20px;
}

.variant-group:last-child {
    margin-bottom: 0;
}

.variant-label {
    font-size: 16px;
    font-weight: 700;
    color: var(--honey-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.variant-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.variant-option:hover {
    transform: translateY(-2px);
}


.variant-option.active::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--honey-primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.variant-option[data-stock="0"] {
    opacity: 0.5;
    cursor: not-allowed;
    position: relative;
}

.variant-option[data-stock="0"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #F44336;
    transform: translateY(-50%) rotate(-15deg);
}

.out-of-stock-label {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: #F44336;
    font-weight: 600;
    white-space: nowrap;
}

.variant-option.pulse {
    animation: variantPulse 0.3s ease;
}

@keyframes variantPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.variant-type-boja .variant-option {
    padding: 0;
}

.color-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: inline-block;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}
.color-circle.plava{
    background-color: blue;
}
.color-circle.crna{
    background-color: black;
}
.color-circle.bela{
    background-color: white;
}
.color-circle.crvena{
    background-color: red;
}
.color-circle.žuta{
    background-color: yellow;
}
.color-circle.zelena {
    background-color: green;
}
.color-circle.siva {
    background-color: gray;
}
.color-circle.roza {
    background-color: pink;
}
.color-circle.ljubičasta {
    background-color: purple;
}
.color-circle.narandžasta {
    background-color: orange;
}
.color-circle.braon {
    background-color: brown;
}
.color-circle.khaki{
    background-color: #e9b99d;
}
.variant-option:hover .color-circle {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.variant-option.active .color-circle {
    border-color: var(--honey-primary);
    box-shadow: 0 0 12px rgba(255, 184, 0, 0.5);
}

.variant-type-boja .variant-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.variant-type-veličina .variant-option,
.variant-type-materijal .variant-option,
.variant-type-broj-komada .variant-option,
.variant-type-pakovanje .variant-option{
    min-width: 60px;
    justify-content: center;
    padding: 12px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 5px;

}

.variant-text {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.variant-option.active .variant-text {
    color: var(--honey-primary);
}
.variant-type-veličina .variant-option.active, .variant-type-materijal .variant-option.active, .variant-type-broj-komada .variant-option.active, .variant-type-pakovanje .variant-option.active {
    border-color: var(--honey-primary);
}

.variant-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--honey-primary);
    border-radius: 8px;
    color: #ffffff;
    font-weight: 600;
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s ease;
}

.variant-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.variant-notification.error {
    background: #F44336;;
}

.variant-notification.success {
    background: #4CAF50;;
}

.color-circle[style*="rgb(255, 255, 255)"],
.color-circle[style*="#ffffff"],
.color-circle[style*="#fff"],
.color-circle[style*="white"] {
    border-color: #999 !important;
}

.color-circle[style*="rgb(255,"],
.color-circle[style*="rgb(254,"] {
    border-color: rgba(0, 0, 0, 0.3);
}

.why-royal-section {
    margin: 100px 0 120px;
    position: relative;
}

.why-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    margin-bottom: 15px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.why-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.why-subtitle {
    font-size: 23px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
}

.why-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.why-column {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.03) 0%, rgba(255, 157, 0, 0.01) 100%);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 16px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.why-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 184, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.why-column:hover::before {
    left: 100%;
}

.why-column:hover {
    border-color: rgba(255, 184, 0, 0.4);
    transform: translateY(-5px);
    box-shadow:
        0 10px 30px rgba(255, 184, 0, 0.2),
        0 0 50px rgba(255, 184, 0, 0.1);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.3s ease;
    padding-left: 5px;
}

.feature-list li:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateX(5px);
}

.feature-list li i {
    color: var(--honey-primary);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(255, 184, 0, 0.5));
}

.why-royal-section::before,
.why-royal-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    pointer-events: none;
    z-index: -1;
}

.why-royal-section::before {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--honey-primary), transparent);
    top: -100px;
    left: -100px;
}

.why-royal-section::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--honey-secondary), transparent);
    bottom: -150px;
    right: -150px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-column {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.why-column:nth-child(1) { animation-delay: 0.1s; }
.why-column:nth-child(2) { animation-delay: 0.2s; }
.why-column:nth-child(3) { animation-delay: 0.3s; }
@media(max-width: 1600px){
    .related-products-section .products-next {
        right: -25px;
    }
    .related-products-section  .products-prev {
        left: -25px;
    }
}
@media (max-width: 1400px) {
    .related-products-section .products-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: calc(280px * 3 + 30px * 2);

    }
    .related-products-section .products-prev{
        left: 0;
    }

    .related-products-section .products-next{
        right: 0;
    }
}
@media (max-width: 1200px) {
    .related-products-section .product-card .product-actions {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    .why-features-grid {
        gap: 30px;
    }

    .why-column {
        padding: 30px 25px;
    }

    .feature-list li {
        font-size: 14px;
        margin-bottom: 14px;
    }
    .lightbox-container {
        max-width: 75%;
        max-height: 65vh;
    }

    .lightbox-image {
        max-height: 65vh;
    }
    .related-products-section .products-slider-arrow {
        width: 60px;
        height: 60px;
    }
    .related-products-section .products-prev {
        left: 10px;
    }

    .related-products-section .products-next {
        right: 10px;
    }
    .product-main{
        gap: 30px;
    }
    .gallery-main{
        height: 500px;
    }
}
@media (max-width: 992px) {
    .product-main .product-actions{
        justify-content: flex-start;
    }
    .btn-add-to-cart{
        width: 300px;
        flex: none;
    }
    .main-lightbox-nav{
        width: 50px;
        height: 50px;
    }
    .main-lightbox-counter{
        bottom: -90px;
    }
    .why-royal-section {
        margin: 80px 0 100px;
    }

    .why-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .why-header {
        margin-bottom: 50px;
    }
    .product-main{
        grid-template-columns: 1fr;
    }
    .product-gallery{
        padding-left: 80px;
    }
    .gallery-main{
        max-width: 500px;
        margin-left: 40px;
    }
    .related-products-section .products-prev {
        left: 0;
    }
    .related-products-section .products-next {
        right: 0;
    }
    .related-products-section .products-grid{
        max-width: calc(280px * 2 + 30px * 1);
    }
}
@media (max-width: 768px) {
    .related-products-section .product-info-container{
        height: calc(100% - 250px);
    }
    .main-lightbox-close{
        right: 15px;
    }
    .main-lightbox-counter {
        bottom: -130px;
    }
    .main-lightbox-container{
        max-width: 90%;
    }
    .main-lightbox-next{
        right: 15px;
    }
    .main-lightbox-prev{
        left: 15px;
    }
    .variants-section {
        padding: 16px;
    }

    .variant-label {
        font-size: 14px;
    }

    .variant-options {
        gap: 8px;
    }

    .variant-option {
        padding: 8px 12px;
    }

    .variant-type-boja .variant-name {
        font-size: 13px;
    }

    .variant-text {
        font-size: 13px;
    }

    .variant-type-veličina .variant-option,
    .variant-type-materijal .variant-option,
    .variant-type-broj-komada .variant-option,
    .variant-type-pakovanje .variant-option{
        min-width: 50px;
        padding: 10px 16px;
    }

    .variant-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        padding: 12px 16px;
        font-size: 14px;
    }
    .why-royal-section {
        margin: 60px 0 80px;
    }

    .why-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-header {
        margin-bottom: 40px;
    }

    .why-title {
        font-size: 28px;
    }

    .why-subtitle {
        font-size: 16px;
    }

    .why-column {
        padding: 25px 20px;
    }

    .feature-list li {
        font-size: 14px;
        margin-bottom: 12px;
    }
    .gallery-container {
        grid-template-columns: 1fr;
    }

    .gallery-thumbnails {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        max-height: none;
        max-width: 100%;
        padding-right: 0;
        padding-bottom: 15px;
        order: 2;
    }

    .gallery-thumbnails::-webkit-scrollbar {
        height: 6px;
        width: auto;
    }

    .gallery-thumbnails::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 10px;
    }

    .gallery-thumbnails::-webkit-scrollbar-thumb {
        background: var(--honey-primary);
        border-radius: 10px;
    }

    .thumbnail {
        min-width: 80px;
        flex-shrink: 0;
    }
    .product-gallery{
        padding-left: 0;
    }
    .gallery-main {
        height: 400px;
        margin: 10px auto;
    }

    .tabs-navigation {
        overflow-x: auto;
    }

    .tab-btn {
        white-space: nowrap;
    }

    .cart-section {
        flex-direction: column;
        align-items: flex-start;
    }
    .related-products-section .products-slider-arrow {
        width: 50px;
        height: 50px;
    }

    .related-products-section .products-slider-arrow i {
        font-size: 20px;
    }
    .related-products-section .product-image-wrapper {
        height: 250px;
    }
    .related-products-section .products-grid{
        gap: 20px;
    }
    .related-products-section .products-slider-arrow {
        width: 50px;
        height: 50px;
    }

    .related-products-section .products-slider-arrow i {
        font-size: 20px;
    }

    .related-products-section .products-prev {
        left: 5px;
    }

    .related-products-section .products-next {
        right: 5px;
    }

    .related-products-section .product-image-wrapper {
        height: 250px;
    }
    .related-products-section .products-grid{
        max-width: 280px;
    }
}
@media (max-width: 576px) {
    .product-main-price{
        font-size: 35px;
    }
    .product-main-badge{
        font-size: 11px;
        padding: 8px 12px;
    }
    .main-lightbox-container{
        max-width: 100%;
    }
    .why-royal-section {
        margin: 50px 0 60px;
    }

    .why-title {
        font-size: 24px;
    }

    .why-subtitle {
        font-size: 14px;
    }

    .feature-list li {
        font-size: 13px;
    }

    .feature-list li i {
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .tabs-navigation{
        flex-direction: column;
        align-items: center;
        border: none
    }
    .tab-btn{
        width: 200px;
    }
    .meta-item{
        flex-direction: column;
        gap: 5px;
    }
    .single-product-page{
        padding-top: 170px;
    }
    .variant-option.active::after {
        top: -6px;
        right: -6px;
        width: 18px;
        height: 18px;
        font-size: 9px;
    }
    .declaration-content{
        padding: 20px;
    }
    .declaration-table{
        margin-top: 10px;
    }
    .declaration-table tr{
        padding: 10px;
        display: flex;
        flex-direction: column;
        gap: 5px;
        align-items: center;
        text-align: center;
    }
    .declaration-table td{
        padding: 0;
    }
}




