/* Modern, Elegant Boxed Card layout styling for FlairyDesigns Theme */

/* Body Background and Outer Wrapper */
body {
    background-color: #ede7e1; /* Soft Warm Gray/Beige Outer Background */
    margin: 0;
    padding: 0;
}

.site-wrapper {
    min-height: 100vh;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .site-wrapper {
        padding: 10px;
    }
}

/* White Boxed Main Container Card */
.site-container {
    background-color: #ffffff;
    width: 100%;
    max-width: 1350px;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(44, 41, 39, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Header Navigation and Brand */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #f2ece6;
    position: relative;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .header-inner {
        padding: 0 20px;
        height: 60px;
    }
}

.logo a {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-text-dark);
    letter-spacing: -0.5px;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-menu a {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    color: var(--color-text-dark);
}

/* Header Social Media Links (Right Side) */
.header-social-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.header-social-icon {
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.header-social-icon:hover {
    color: var(--color-primary);
}

@media (max-width: 992px) {
    .header-social-links {
        display: none; /* Hide on mobile/tablet to save space */
    }
}

/* Mobile Nav Toggle Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--color-text-dark);
    margin-bottom: 4px;
    transition: var(--transition-smooth);
}

.menu-toggle span:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .main-navigation {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        border-bottom: 1px solid #f2ece6;
        padding: 20px;
        display: none;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Hero Section inside White Card */
.hero-section {
    padding: var(--spacing-md) 40px;
    background-color: #fcfbfa;
    border-bottom: 1px solid #f2ece6;
}

@media (max-width: 768px) {
    .hero-section {
        padding: var(--spacing-sm) 20px;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    align-items: center;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: var(--spacing-lg);
    }
}

.hero-content h1 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: var(--spacing-xs);
    line-height: 1.15;
}

.hero-content p {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
}

.hero-buttons .button {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

/* Main Shop Layout & Grid */
.shop-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
}

@media (min-width: 992px) {
    .shop-layout {
        grid-template-columns: 1fr 260px; /* Main content left, Sidebar right */
    }
}

@media (max-width: 768px) {
    .shop-layout {
        padding: 20px;
        gap: 20px;
    }
}

/* Sidebar Styling (Right Column) */
.shop-sidebar {
    border-left: 1px solid #f5ede6;
    padding-left: 30px;
}

@media (max-width: 992px) {
    .shop-sidebar {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #f5ede6;
        padding-top: 30px;
    }
}

.sidebar-widget {
    margin-bottom: 2.5rem;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    font-family: var(--font-body);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-dark);
    font-weight: 700;
    border-bottom: 1px solid var(--color-text-dark);
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.filter-list li {
    margin-bottom: 0.5rem;
}

.filter-link {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    display: block;
    padding: 4px 0;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.filter-link:hover, .filter-link.active {
    color: var(--color-text-dark);
    font-weight: 600;
}

.filter-count {
    display: none; /* Hide count bubbles to match clean text menu look */
}

/* Get Inspired Tags */
.inspired-tag {
    display: block;
    background-color: #f3ebe4; /* Pastel sand tag */
    color: var(--color-text-muted) !important;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    border-left: 3px solid var(--color-primary);
}

.inspired-tag:hover {
    background-color: var(--color-primary-light);
    color: var(--color-text-dark) !important;
    transform: translateX(3px);
}

/* Minimalist Product Grid & Card */
.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.results-count {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
}

@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr); /* Force 3 columns on desktop matching image */
    }
}

.product-card {
    background: transparent;
    display: flex;
    flex-direction: column;
    position: relative;
    border: none;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
}

.product-category-top {
    display: block;
    text-align: center;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.product-image-link {
    display: block;
    aspect-ratio: 16/11; /* Clean landscape ratio */
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #f2ece6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    margin-bottom: 12px;
    background-color: var(--color-bg-base);
}

.product-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card:hover .product-image-link img {
    transform: scale(1.05);
}

.product-title-bottom {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    text-align: center;
    color: var(--color-text-dark);
    margin: 0;
    line-height: 1.4;
}

.product-title-bottom a {
    color: var(--color-text-dark);
    transition: var(--transition-smooth);
}

.product-title-bottom a:hover {
    color: var(--color-primary);
}

/* Hide price and details details on main grid to match minimalist lookup */
.product-badge,
.product-details,
.product-footer {
    display: none;
}

/* Search widget wrapper */
.search-input-wrapper button svg {
    transition: var(--transition-smooth);
}

.search-input-wrapper button:hover svg {
    transform: scale(1.1);
    color: var(--color-primary);
}

/* Footer Section inside Card */
.site-footer {
    background-color: #ffffff;
    border-top: 1px solid #f2ece6;
    padding: 60px 40px 40px;
    margin-top: auto;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 30px 20px;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    color: var(--color-text-dark);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-weight: 700;
}

.footer-column p {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid #f5ede6;
    padding-top: 25px;
    text-align: center;
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

/* Simple Blog index & details override */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px;
}

.blog-post-card {
    background-color: #ffffff;
    border: 1px solid #f2ece6;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.post-card-content {
    padding: 20px;
}

/* Single Product override spacing & details layout */
.product-single-container {
    padding: 40px;
}

.product-single-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (min-width: 992px) {
    .product-single-grid {
        grid-template-columns: 1.1fr 0.9fr; /* Gallery left, Details right */
        gap: 50px;
    }
}

/* Image Gallery Styles */
.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gallery-main {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #f2ece6;
    background-color: var(--color-bg-base);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    aspect-ratio: 16/12;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s ease-in-out;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.gallery-thumb {
    aspect-ratio: 1;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #ebdcd6;
    cursor: pointer;
    background-color: var(--color-bg-base);
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
    border-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(167, 136, 129, 0.25);
}

/* Product Info Panel (Right Column) */
.product-info-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-single-category {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-primary);
    text-transform: uppercase;
}

.product-single-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.25;
    color: var(--color-text-dark);
    margin: 0;
}

.product-single-price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-text-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 5px 0;
}

.product-single-price .currency-symbol {
    font-size: 1.4rem;
    font-weight: 500;
    align-self: flex-start;
    margin-top: 6px;
}

.product-single-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid #f2ece6;
    border-bottom: 1px solid #f2ece6;
    padding: 15px 0;
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

.product-single-meta .meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-single-meta .meta-label {
    font-weight: 600;
    color: var(--color-text-dark);
}

.status-badge {
    font-weight: 600;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
}

.status-badge.in-stock {
    color: #146c43;
    background-color: #d1e7dd;
}

.status-badge.out-of-stock {
    color: #b02a37;
    background-color: #f8d7da;
}

/* Product Highlights Box */
.product-highlights-box {
    background-color: #faf9f7;
    border: 1px dashed var(--color-border);
    border-radius: 8px;
    padding: 18px;
}

.highlights-title {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--color-text-dark);
    margin-top: 0;
}

.highlights-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.highlights-list li .check-icon {
    color: var(--color-secondary);
    margin-top: 2px;
    flex-shrink: 0;
}

/* Canva Guide Box */
.canva-guide-box {
    background: linear-gradient(135deg, #f7f2fe 0%, #f1e9fc 100%);
    border: 1px solid #ebdcfc;
    border-radius: 8px;
    padding: 20px;
}

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

.canva-badge {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #5a38a7;
    background: #ebdcfc;
    padding: 3px 8px;
    border-radius: 3px;
}

.canva-brand-logo {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.1rem;
    color: #00c4cc;
    letter-spacing: -0.5px;
}

.canva-text {
    font-size: 0.82rem;
    color: #585368;
    line-height: 1.5;
    margin: 0 0 15px 0;
}

.canva-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.canva-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.canva-step .step-num {
    width: 20px;
    height: 20px;
    background-color: #5a38a7;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.canva-step .step-info {
    display: flex;
    flex-direction: column;
}

.canva-step .step-info strong {
    font-size: 0.82rem;
    color: #2c2738;
    line-height: 1.2;
    margin-bottom: 2px;
}

.canva-step .step-info span {
    font-size: 0.72rem;
    color: #6f6b7d;
    line-height: 1.3;
}

/* Purchase Actions / Button styling */
.purchase-actions {
    margin-top: 5px;
}

.etsy-buy-btn {
    width: 100%;
    background-color: #f1641e; /* Classic Etsy Orange */
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem;
    transition: var(--transition-smooth);
    padding: 1rem 2rem;
    box-shadow: 0 4px 15px rgba(241, 100, 30, 0.1);
}

.etsy-buy-btn:hover {
    background-color: #d14909;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 100, 30, 0.25);
    color: #ffffff;
}

/* Bottom Description & FAQ sections */
.product-details-bottom {
    margin-top: 50px;
    border-top: 1px solid #f2ece6;
    padding-top: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .product-details-bottom {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 50px;
    }
}

.details-section h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--color-text-dark);
    border-bottom: 2px solid var(--color-primary-light);
    padding-bottom: 8px;
    margin-top: 0;
}

.description-content {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.description-content p {
    margin-bottom: 1.25rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item h4 {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 6px;
    margin-top: 0;
}

.faq-item p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Newsletter styling adjust */
.newsletter-section {
    background-color: #fcfbfa;
    padding: 60px 40px;
    border-top: 1px solid #f2ece6;
}

.newsletter-card {
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
}

.newsletter-card h2 {
    font-size: 1.6rem;
}

/* ==========================================================================
   Antigravity Visual & Layout Enhancements
   ========================================================================== */

/* Full-Width Shop Layout Grid & Sidebar Removal */
.shop-layout {
    grid-template-columns: 1fr !important;
    padding: 40px 0 !important;
}

@media (min-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 30px !important;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 25px !important;
    }
}
@media (min-width: 600px) and (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}
@media (max-width: 599px) {
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* Horizontal Category Filter Pills */
.filter-list.horizontal-pills {
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 5px 2px;
    list-style: none;
}

.filter-list.horizontal-pills .filter-link {
    display: inline-block;
    padding: 10px 22px;
    background-color: #ffffff;
    color: var(--color-text-muted);
    border-radius: 30px;
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.filter-list.horizontal-pills .filter-link:hover {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-1px);
}

.filter-list.horizontal-pills .filter-link.active {
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(167, 136, 129, 0.25);
}

/* Gorgeous Product Cards */
.product-card {
    background-color: #ffffff;
    border: 1px solid #f2ece6;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-primary-light);
}

.product-card .product-image-link {
    aspect-ratio: 16/12;
    overflow: hidden;
    display: block;
    margin-bottom: 0;
    border: none;
    border-bottom: 1px solid #f2ece6;
    border-radius: 0;
    background-color: #ffffff;
    position: relative;
}

.product-card .product-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card:hover .product-image-link img {
    transform: scale(1.04);
}

.product-card-details {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-category {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 8px;
    display: block;
}

.product-card-title {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em;
}

.product-card-title a {
    color: var(--color-text-dark);
}

.product-card-title a:hover {
    color: var(--color-primary);
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #fdfaf7;
}

.product-card-price {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.product-card-btn {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
}

.product-card:hover .product-card-btn {
    color: var(--color-text-dark);
    transform: translateX(4px);
}

/* Badges override */
.product-badge {
    display: inline-block !important;
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--color-text-dark);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 10;
}

.out-of-stock-badge {
    background-color: #b02a37;
}

/* Product Detail Page Gallery without cropping */
.gallery-main {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f2ece6;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 480px;
    position: relative;
    aspect-ratio: auto !important;
}

.gallery-main img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain !important;
    display: block;
    cursor: zoom-in;
}

.gallery-thumb {
    aspect-ratio: 1 !important;
    border-radius: 8px !important;
    overflow: hidden;
    border: 1px solid #ebdcd6;
    cursor: pointer;
    background-color: #ffffff !important;
    opacity: 0.6;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-thumb img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain !important;
}

/* Zoom Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 41, 39, 0.95);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #ffffff;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-smooth);
    user-select: none;
}

.lightbox-close:hover {
    color: var(--color-accent);
    transform: scale(1.1);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

/* Detail Title & Price block styling */
.product-info-panel {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.product-single-category {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: -5px;
}

.product-single-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.25;
    color: var(--color-text-dark);
    margin: 0;
    font-weight: 600;
}

.product-single-price {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--color-primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    border-bottom: 1px solid #f2ece6;
    padding-bottom: 15px;
}

.product-single-price .currency-symbol {
    font-size: 1.4rem;
    font-weight: 500;
    align-self: flex-start;
    margin-top: 6px;
    color: var(--color-primary);
}

.product-single-meta {
    background-color: #faf6f2;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #f2ece6;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-single-meta .meta-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

.product-single-meta .meta-label {
    font-weight: 600;
    color: var(--color-text-dark);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.status-badge {
    font-weight: 700;
    font-size: 0.72rem;
    padding: 4px 10px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Slider refinements */
.hero-product-slider {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 4px solid #ffffff;
    background-color: var(--color-bg-base);
    transition: var(--transition-smooth);
}

.hero-product-slider:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(167, 136, 129, 0.15);
}

.hero-product-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.8s ease;
}

.hero-product-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider-dots .slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.hero-slider-dots .slider-dot:hover,
.hero-slider-dots .slider-dot.active {
    background-color: #ffffff;
    transform: scale(1.3);
}

/* Testimonials section enhancements */
.testimonials-section {
    background-color: #faf6f2;
    padding: 80px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.testimonial-slide {
    animation: fadeIn 0.4s ease-in-out;
}

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

.testimonials-arrows button {
    background-color: #ffffff !important;
    border: 1px solid var(--color-border) !important;
    color: var(--color-text-dark) !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: var(--transition-smooth) !important;
}

.testimonials-arrows button:hover {
    background-color: var(--color-primary) !important;
    color: #ffffff !important;
    border-color: var(--color-primary) !important;
    box-shadow: 0 4px 12px rgba(167, 136, 129, 0.2);
}


