/* Sovo Yachts Marine Store - Harmonized Styles */

#sovo-store {
    /* Branded Tokens from premium.css (Backups) */
    --accent: #0EA5E9;
    --navy: #020B19;
    --off-navy: #071224;
    --text-light: #94A3B8;
    
    /* Store Internal Tokens */
    --sovo-white: #ffffff;
    --sovo-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --sovo-radius-pill: 50px;
    --sovo-radius: 4px;
    --sovo-shadow: 0 20px 50px rgba(0,0,0,0.8);
    --sovo-border: rgba(14, 165, 233, 0.15);

    font-family: var(--font-global), sans-serif;
    color: var(--text-main);
}

/* Hero Section Adjustments */
.sovo-hero {
    background: var(--navy);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.sovo-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2,11,25,0.4) 0%, rgba(2,11,25,1) 100%);
    z-index: 2;
}

.sovo-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 1;
}

.sovo-hero-content {
    position: relative;
    z-index: 3;
}

/* Category Filters (Left Sidebar Layout) */
.sovo-store-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: flex-start;
}

/* Sidebar & Dropdown */
.sovo-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sovo-category-dropdown {
    position: relative;
    width: 100%;
    z-index: 1000;
}

.sovo-dropdown-trigger {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 1001;
}

@media (min-width: 992px) {
    .sovo-dropdown-trigger {
        display: none !important;
    }
    
    .sovo-dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: flex !important;
        flex-direction: column !important;
        background: none !important;
        backdrop-filter: none !important;
        border: none !important;
        padding: 0 !important;
        box-shadow: none !important;
        gap: 0.5rem;
    }

    .sovo-filter-btn {
        width: 100%;
        text-align: left;
        padding: 0.8rem 1rem !important;
        border-radius: 6px !important;
        border: 1px solid transparent !important;
        background: rgba(255, 255, 255, 0.03) !important;
        transition: all 0.3s ease !important;
    }

    .sovo-filter-btn:hover, .sovo-filter-btn.active {
        background: rgba(0, 194, 255, 0.1) !important;
        border-color: rgba(0, 194, 255, 0.3) !important;
        color: var(--accent) !important;
        padding-left: 1.5rem !important;
    }
    
    .sovo-dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: 1px solid rgba(255,255,255,0.1);
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 8px;
        max-height: calc(100vh - 200px);
        overflow-y: auto;
    }
    
    .sovo-filter-btn {
        width: 100%;
        text-align: left;
        padding: 1rem 1.2rem;
        border-radius: 6px;
        border-left: 3px solid transparent;
    }
    
    .sovo-filter-btn:hover,
    .sovo-filter-btn.active {
        background: rgba(14, 165, 233, 0.15);
        border-left-color: var(--accent);
        padding-left: 1.5rem;
    }
    
    .sovo-sidebar {
        position: sticky;
        top: 120px;
        align-self: flex-start;
        max-height: calc(100vh - 150px);
        overflow-y: auto;
        scrollbar-width: thin;
        scrollbar-color: var(--accent) rgba(255,255,255,0.1);
    }
    
    .sovo-sidebar::-webkit-scrollbar {
        width: 6px;
    }
    
    .sovo-sidebar::-webkit-scrollbar-track {
        background: rgba(255,255,255,0.05);
        border-radius: 3px;
    }
    
    .sovo-sidebar::-webkit-scrollbar-thumb {
        background: var(--accent);
        border-radius: 3px;
    }
}

.sovo-dropdown-trigger:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent);
}

.sovo-dropdown-trigger i {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
    color: var(--accent);
}

.sovo-category-dropdown.active .sovo-dropdown-trigger i {
    transform: rotate(180deg);
}

.sovo-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: #020B19;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    backdrop-filter: blur(20px);
}

.sovo-category-dropdown.active .sovo-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sovo-filter-btn {
    width: 100%;
    text-align: left;
    padding: 12px 15px;
    background: transparent;
    border: none;
    border-radius: 4px;
    color: var(--text-light);
    font-size: 0.85rem;
    font-family: var(--font-global);
    transition: all 0.2s ease;
    cursor: pointer;
}

.sovo-filter-btn:hover, .sovo-filter-btn.active {
    background: rgba(14, 165, 233, 0.1);
    color: var(--accent);
    padding-left: 20px;
}

/* Product Cards Grid */
.sovo-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.sovo-product-card {
    background: linear-gradient(145deg, rgba(7, 18, 36, 0.7), rgba(4, 9, 21, 0.85));
    backdrop-filter: blur(16px);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--sovo-transition);
    border: 1px solid var(--sovo-border);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--sovo-shadow);
}

.sovo-product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.8), 0 0 35px rgba(14, 165, 233, 0.2);
    border-color: rgba(14, 165, 233, 0.5);
}

.sovo-product-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 400;
    color: white;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.sovo-product-image {
    height: 280px;
    background: #01060D;
    overflow: hidden;
}

.sovo-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--sovo-transition);
    filter: brightness(0.9);
}

.sovo-product-card:hover .sovo-product-image img {
    transform: scale(1.05);
    filter: brightness(1);
}

.sovo-product-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sovo-product-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.sovo-product-title {
    font-size: 24px;
    margin-bottom: 15px;
    font-family: var(--font-global);
    color: var(--white);
    font-weight: 400;
}

.sovo-product-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
    flex-grow: 1;
}

.sovo-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sovo-product-price {
    font-family: var(--font-global);
    font-size: 13px;
    color: var(--accent);
    letter-spacing: 1px;
}

.sovo-btn, .sovo-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1; /* Equalized widths */
    gap: 8px;
    padding: 10px 14px; /* Tightened padding */
    border-radius: 6px;
    text-decoration: none !important;
    font-family: var(--font-global);
    font-size: 11px; /* Smaller font for tighter fit */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.sovo-btn {
    background: linear-gradient(135deg, #0EA5E9, #0284c7);
    color: white;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.35);
}

.sovo-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 16px 40px rgba(14, 165, 233, 0.55);
}

.sovo-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.sovo-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Animations */
.sovo-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--sovo-transition);
}

.sovo-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Container Matching Side Margins */
.sovo-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.sovo-section {
    padding: 120px 0;
}

/* Pagination Styles */
.sovo-pagination-wrapper {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.sovo-pagination {
    display: flex;
    gap: 10px;
    align-items: center;
}

.page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-light);
    text-decoration: none !important;
    font-family: var(--font-global);
    font-size: 14px;
    transition: var(--sovo-transition);
}

.page-link:hover {
    background: rgba(14, 165, 233, 0.1);
    border-color: var(--accent);
    color: white;
    transform: translateY(-3px);
}

.page-link.active {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
}

.page-link.prev, .page-link.next {
    font-size: 18px;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .sovo-store-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .sovo-sidebar {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }
    .sovo-product-grid { grid-template-columns: 1fr 1fr; }
    .sovo-section { padding: 80px 0; }
}

@media (max-width: 768px) {
    .sovo-product-grid { grid-template-columns: 1fr; }
}

/* Cinematic Product Detail Page Styles */
#sovo-product-detail {
    min-height: 100vh;
    background: radial-gradient(circle at top left, #0A162B, #020B19);
    padding-top: 100px;
}

.product-hero-cinematic {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.hero-blur-bg {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 194, 255, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.25; /* Parlak resim bulanıklıklarını karartmak için eklendi */
}

.product-visual-glass {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.product-visual-glass .main-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 2rem;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-gallery-thumb, .thumbnail-strip {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap !important;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}
.product-gallery-thumb::-webkit-scrollbar,
.thumbnail-strip::-webkit-scrollbar {
    display: none; /* Safari/Chrome */
}
.gallery-thumb-item, .thumb-item {
    flex: 0 0 auto;
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.gallery-thumb-item:hover, .gallery-thumb-item.active,
.thumb-item:hover, .thumb-item.active {
    border-color: var(--accent);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

/* OVERLAP DESKTOP TEXT CARD */
@media (min-width: 992px) {
    .product-hero-cinematic .col-lg-6 {
        width: 70%;
    }
    .product-hero-cinematic .col-lg-5 {
        width: 45%;
        margin-left: -15%;
        background: linear-gradient(145deg, rgba(7, 18, 36, 0.85), rgba(4, 10, 20, 0.95));
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        padding: 35px 25px; /* Tightened padding to fit buttons */
        border-radius: 24px;
        border: 1px solid rgba(14, 165, 233, 0.15);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: -20px 30px 60px rgba(0,0,0,0.6);
        z-index: 10;
        margin-top: 30px;
    }
}

/* --- CINEMATIC MOSAIC GALLERY (Desktop) --- */
.product-visual-glass {
    position: relative;
    z-index: 5;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mosaic-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 24px;
    perspective: 1000px;
}

.mosaic-item {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    cursor: pointer;
    background: #0f172a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.mosaic-item:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.5), 0 0 20px rgba(14, 165, 233, 0.2);
    z-index: 10;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.mosaic-item:hover img {
    transform: scale(1.08);
}

.mosaic-item.main {
    grid-column: span 2;
    grid-row: span 2;
}

/* Lightbox Hint Overlay */
.mosaic-item::after {
    content: "\F648"; /* bi-zoom-in */
    font-family: "bootstrap-icons";
    position: absolute;
    inset: 0;
    background: rgba(0, 194, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mosaic-item:hover::after {
    opacity: 1;
}

/* Mobile Gallery Slider */
@media (max-width: 991px) {
    .mosaic-gallery {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        grid-template-columns: none;
        grid-template-rows: none;
        gap: 15px;
        padding-bottom: 10px;
        scrollbar-width: none;
    }
    
    .mosaic-gallery::-webkit-scrollbar { display: none; }

    .mosaic-item {
        flex: 0 0 85%;
        height: 300px;
        scroll-snap-align: start;
    }
    
    .mosaic-item.main {
        flex: 0 0 85%;
    }
}

.category-kicker {
    color: var(--accent);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.display-title {
    color: white;
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.8vw, 2.2rem); 
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 6px 20px rgba(0,0,0,0.8), 0 2px 10px rgba(0,0,0,0.6);
}

.lead-description {
    color: rgba(255, 255, 255, 0.85); 
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-family: var(--font-global);
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.quick-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.quick-stat-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 2px solid var(--accent);
    display: flex;
    flex-direction: column;
}

.stat-label {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-value {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
}

.price-action-box {
    display: flex;
    align-items: center;
    gap: 0.75rem; /* Further reduced to ensure fit */
    padding: 1rem; /* Further reduced */
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-price {
    font-family: 'Aldrich', monospace;
    font-size: 1.8rem;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(0, 194, 255, 0.3);
}

.sovo-btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 10px 40px rgba(0, 194, 255, 0.2);
}

.sovo-btn-primary:hover {
    background: white;
    color: var(--navy);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.1);
}

.long-description-glass {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.section-subtitle {
    font-family: var(--font-display);
    color: white;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.specs-table-glass table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.specs-table-glass td {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.specs-table-glass td:first-child {
    color: var(--accent);
    font-weight: 600;
    width: 40%;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.specs-table-glass td:last-child {
    color: white;
    text-align: right;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Specs Grid for Model Detail */
.specs-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row .spec-label {
    color: #94A3B8;
    font-size: 14px;
}

.spec-row .spec-value {
    color: white;
    font-weight: 500;
    font-size: 15px;
}

.sticky-sidebar-specs {
    position: sticky;
    top: 120px;
}

@media (max-width: 991px) {
    .product-hero-cinematic { padding: 40px 0; }
    .display-title { font-size: 2.8rem; }
    .price-action-box { flex-direction: column; text-align: center; }
    .long-description-glass { padding: 2rem; }
}

/* Breadcrumbs Navigation */
.product-breadcrumbs {
    background: transparent;
    padding: 0;
    border-bottom: none;
    position: relative;
    z-index: 10;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
    color: var(--text-light);
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    color: var(--accent);
    opacity: 0.5;
}

.breadcrumb-list a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--sovo-transition);
}

.breadcrumb-list a:hover {
    color: var(--accent);
}

.breadcrumb-list .active {
    color: white;
    font-weight: 500;
}

/* Main Image Wrapper */
.main-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.main-image-wrapper .main-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.main-image-wrapper:hover .main-img {
    transform: scale(1.02);
}

/* Gallery Navigation Arrows */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
}

.main-image-wrapper:hover .gallery-nav {
    opacity: 1;
}

.gallery-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav.prev { left: 15px; }
.gallery-nav.next { right: 15px; }

/* Lightbox Hint Overlay */
.mosaic-item.has-more img {
    filter: brightness(0.6) blur(2px);
}

.mosaic-item.has-more::after {
    content: attr(data-more);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 32px;
    font-weight: 700;
    z-index: 5;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s ease;
}

.mosaic-item.has-more:hover::after {
    transform: translate(-50%, -50%) scale(1.1);
}

.mosaic-item::after {
    content: '\F325';
    font-family: "bootstrap-icons";
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateY(10px);
}

/* Zoom Hint */
.gallery-zoom-hint {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    opacity: 0;
    transition: all 0.3s ease;
}

.main-image-wrapper:hover .gallery-zoom-hint {
    opacity: 1;
}

/* Lightbox for Gallery */
.product-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(2,11,25,0.98);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.product-lightbox.active {
    display: flex;
}

.product-lightbox img {
    max-width: 85vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.6);
}

.product-lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: var(--sovo-transition);
    z-index: 10001;
}

.product-lightbox-close:hover {
    background: rgba(239,68,68,0.8);
    transform: rotate(90deg);
}

/* Lightbox Navigation */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    font-size: 24px;
}

.lightbox-nav:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.lightbox-nav.prev { left: 30px; }
.lightbox-nav.next { right: 30px; }

/* Lightbox Counter */
.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 20px;
    color: white;
    font-size: 14px;
    font-weight: 500;
}

/* Quick Stats Grid */
.quick-stats-grid {
    display: flex;
    gap: 20px;
    margin: 25px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.quick-stat-item {
    text-align: center;
    flex: 1;
}

.quick-stat-item .stat-label {
    display: block;
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.quick-stat-item .stat-value {
    display: block;
    font-family: var(--font-global);
    font-size: 20px;
    font-weight: 500;
    color: white;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Detail Badge Enhancement */
.detail-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--accent) 0%, #0284c7 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(14,165,233,0.3);
}

/* CTA Button Secondary Style */
.cta-btn.secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
}

.cta-btn.secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* --- RECOMMENDED PRODUCTS SECTION (on Boat Detail) --- */
.recommended-products-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(to bottom, transparent, rgba(14, 165, 233, 0.05));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.recommendation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.recommendation-title {
    font-family: var(--font-display);
    color: white;
    font-size: 2rem;
    margin: 0;
}

.view-all-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: white;
    transform: translateX(5px);
}

.rp-card {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.rp-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.rp-image-box {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.rp-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.rp-card:hover .rp-image-box img {
    transform: scale(1.1);
}

.rp-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rp-overlay-btn {
    position: absolute;
    inset: 0;
    background: rgba(7, 18, 36, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
}

.rp-card:hover .rp-overlay-btn {
    opacity: 1;
}

.rp-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.rp-title {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: var(--font-global);
}

.rp-category {
    color: var(--accent);
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.rp-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
    margin-top: auto;
}

.rp-price {
    font-family: 'Aldrich', monospace;
    color: white;
    font-size: 1rem;
}

.rp-link-btn {
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.rp-link-btn:hover {
    background: var(--accent);
    color: white;
}
