/* Reset & Base Styles */
:root {
    --color-primary: #000000;
    --color-secondary: #ffffff;
    --color-accent: #177d82; /* Elegant Gold */
    --color-text: #333333;
    --color-light-gray: #f4f4f4;
    --font-heading: 'Bricolage', serif;
    --font-body: 'Helvetica', sans-serif;
    --container-width: 1200px;
    --transition: all 0.3s ease;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-secondary);
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}
ul {
    list-style: none;
}
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}
/* Top Promo Bar */
.top-bar {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    text-align: center;
    padding: 8px 0;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}
/* Main Header */
.main-header {
    background-color: var(--color-secondary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 !important;
}
/* Logo */
.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-text h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
    color: var(--color-primary);
}
.logo-text span {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-top: 4px;
}
/* Header Icons */
.header-icons {
    display: flex;
    gap: 20px;
    font-size: 1.5rem;
    color: var(--color-primary);
}
.header-icons a:hover {
    color: var(--color-accent);
}
/* Desktop Navigation */
.desktop-nav {
    border-top: 1px solid var(--color-light-gray);
    padding: 15px 0;
}
.desktop-nav .nav-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}
.desktop-nav a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    color: var(--color-text);
}
.desktop-nav a:hover {
    color: var(--color-accent);
    border-bottom: 1px solid var(--color-accent);
}
/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-primary);
}
/* Mobile Navigation Drawer */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1001;
}
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100%;
    background-color: var(--color-secondary);
    z-index: 1002;
    transition: var(--transition);
    padding: 20px;
    overflow-y: auto;
}
.mobile-nav-drawer.active {
    left: 0;
}
.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}
.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--color-light-gray);
    padding-bottom: 10px;
}
.drawer-header h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
}
.close-menu-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
}
.mobile-nav-list li {
    border-bottom: 1px solid var(--color-light-gray);
}
.mobile-nav-list a {
    display: block;
    padding: 15px 0;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
/* Hero Section */
.hero {
    height: 80vh;
    background: 
        linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),
        url('../img/hero-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    letter-spacing: 1px;
}
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--color-accent);
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}
.btn:hover {
    background-color: #a08040;
}
.cart-icon {
    position: relative;
    display: inline-block;
}

.cart-icon .cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #ff4b4b;
    color: #fff;
    font-size: 10px;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .desktop-nav {
        display: none; /* Hide desktop nav on tablets and below */
    }
    .mobile-menu-btn {
        display: block;
    }
    .logo-text h1 {
        font-size: 1.5rem;
    }
    
    .logo-text span {
        font-size: 0.5rem;
    }
    .header-grid{
        justify-content: space-around;
    }
}
/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #111;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}
.slide.active {
    opacity: 1;
    visibility: visible;
}
.slide-container {
    display: flex;
    width: 100%;
    height: 100%;
}
/* Left/Main Part */
.slide-main {
    flex: 6; /* Takes up 60% approx of width */
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px;
}
/* Dark overlay for text readability */
.slide-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}
.slide-content {
    position: relative; /* Above overlay */
    z-index: 2;
    color: white;
}
.slide-content h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
}
.btn-slide {
    display: inline-block;
    padding: 12px 35px;
    background-color: white;
    color: black;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    border: 1px solid white;
    transition: var(--transition);
}
.btn-slide:hover {
    background-color: transparent;
    color: white;
}
/* Right/Grid Part */
.slide-grid {
    flex: 4; /* Takes up 40% */
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    padding: 15px;
    background-color: #222;
}
.grid-item {
    background-color: #333;
    overflow: hidden;
}
.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.grid-item img:hover {
    transform: scale(1.05);
}
/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-size: 2rem;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}
.slider-arrow:hover {
    background: white;
    color: black;
}
.prev { left: 20px; }
.next { right: 20px; }
/* Responsive Slider */
@media (max-width: 768px) {
    .slide-container {
        flex-direction: column;
    }
    .slide-main {
        flex: 1; /* Takes full available space on minimal height */
        height: 60%;
        padding: 30px;
        align-items: center;
        text-align: center;
    }
    .slide-content h2 {
        font-size: 2.5rem;
    }
    .slide-grid {
        display: none; /* Hide grid on mobile to keep focus on main banner */
    }
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    /* Light contrast background */
}
.categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
/* Category Columns */
.cat-col-1,
.cat-col-2,
.cat-col-3 {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
/* Header Block */
.cat-header {
    padding-bottom: 20px;
}
.cat-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-style: italic;
    /* Matches the visual style of "Categories" */
    margin-bottom: 15px;
    color: var(--color-primary);
}
.cat-header p {
    font-size: 0.95rem;
    margin-bottom: 25px;
    color: #555;
    max-width: 350px;
    /* Keep text measure distinct */
}
.btn-all-cat {
    display: inline-block;
    padding: 12px 0;
    width: 200px;
    text-align: center;
    border: 1px solid #ccc;
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background-color: transparent;
    transition: var(--transition);
}
.btn-all-cat:hover {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}
/* Category Cards */
.cat-card {
    position: relative;
    overflow: hidden;
    width: 100%;
}
/* Sizing Helpers for aspect ratios */
.large {
    height: 500px;
    /* Tall vertical */
}
.medium {
    height: 250px;
}
.square {
    height: 250px;
}
.large-vertical {
    height: 350px;
    /* Taller element in 3rd column */
}
.cat-col-3 .medium:first-child {
    height: 420px;
    width: 290px;
}
/* .cat-col-3 .medium:last-child {
    height: 430px;
} */
/* Specific heights to match the staggered bento look more closely to the image */
/* Col 1: Header (auto) + Pendant (Tall) */
/* Col 2: Track (Medium) + Outdoor (Medium) - wait, from image, col 2 is stacked 2 items */
/* Col 3: Wall (Tall-ish) + Ceiling (Tall-ish) */
/* Let's refine sizes based on visual */
.cat-col-1 .large {
    height: 600px;
    width: 600px;
}
.cat-col-2 .medium {
    height: 420px;
    width: 300px;
}
/* 290 * 2 + 20gap = 600 approx */
/* .cat-col-2 .square {
    height: 390px;
} */
/* .cat-col-3 .medium:first-child {
    height: 290px;
} */
.cat-col-3 .large-vertical {
    height: 290px;
}
/* Image Styling */
.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.cat-card:hover img {
    transform: scale(1.03);
}
/* Label Styling */
.cat-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    font-weight: 400;
    letter-spacing: 0.5px;
    pointer-events: none;
    z-index: 1;
}
/* Gradient overlay for better text readability at bottom */
.cat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    pointer-events: none;
}
/* Responsive - Categories */
@media (max-width: 900px) {
    .categories-grid {
        grid-template-columns: 1fr 1fr;
        /* Switch to 2 columns */
    }
    .cat-col-3 {
        grid-column: span 2;
        /* Force 3rd column contents to stretch or just sit below */
        flex-direction: row;
        /* Make them side by side? Or just stack under */
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .cat-col-1 .large {
        height: 400px;
    }
    .cat-col-2 .medium,
    .cat-col-2 .square {
        height: 250px;
    }
    .cat-col-3 .medium,
    .cat-col-3 .large-vertical {
        height: 250px;
        width: auto !important;
    }
}
@media (max-width: 600px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .cat-col-3 {
        grid-column: auto;
        display: flex;
        flex-direction: column;
    }
    .cat-col-1 .cat-header {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .cat-header p {
        text-align: center;
    }
    .cat-col-1 .large {
        height: 350px;
    }
    /* Make heights uniform on mobile for simplicity */
    .cat-card,
    .medium,
    .square,
    .large-vertical {
        height: 250px !important;
        width: auto !important;
    }
}

/* Feature Section - Reflecting Lights */
.feature-section {
    background-color: #0c0c0c;
    /* Deep rich black */
    color: white;
    padding: 0;
}
.feature-container {
    max-width: 1400px;
    margin: 0 auto;
}
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Split evenly for text balance */
    min-height: 700px;
}
/* Left Panel - Animation */
.feature-left {
    background-color: #050505;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-right: 1px solid #222;
}
/* New Lamp Design */
.light-anim-wrapper {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* Hang from top */
    padding-top: 100px;
    /* Cord length */
}
/* Cord */
.light-source {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.light-source::before {
    content: '';
    position: absolute;
    top: -100px;
    /* Go up to ceiling */
    width: 2px;
    height: 100px;
    background-color: #444;
}
/* Pendant Shade */
.bulb-shape {
    width: 120px;
    height: 60px;
    background: linear-gradient(to right, #222, #444, #222);
    border-radius: 60px 60px 0 0;
    /* Dome shape */
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
/* Inner bulb hint */
.bulb-shape::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 20px;
    background-color: #fff;
    border-radius: 0 0 15px 15px;
    opacity: 0.2;
    transition: opacity 0.3s;
}
/* The Beam */
.light-beam {
    position: absolute;
    top: 50px;
    /* Start below shade */
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    width: 300px;
    height: 600px;
    background: conic-gradient(from 180deg at 50% 0%, rgba(255, 255, 255, 0.4) 0deg, transparent 20deg);
    /* Conic gradient makes a nice spotlight cone */
    opacity: 0;
    transform-origin: top center;
    filter: blur(20px);
    transition: all 0.5s ease-out;
    pointer-events: none;
}
/* Hover Effects */
.feature-left:hover .bulb-shape::after {
    opacity: 1;
    /* Bulb turns on */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}
.feature-left:hover .light-beam {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}
.feature-hashtag {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #444;
    position: absolute;
    bottom: 50px;
    letter-spacing: 2px;
    transition: color 0.5s;
}
.feature-left:hover .feature-hashtag {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
/* Right Panel - Content */
.feature-right {
    background-color: #111;
    padding: 60px;
    display: flex;
    align-items: center;
}
.feature-content-wrapper {
    max-width: 600px;
    margin: 0 auto;
}
.brand-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
}
.brand-header h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: white;
    margin-bottom: 10px;
    letter-spacing: -1px;
}
.brand-header .tagline {
    font-size: 1.1rem;
    color: var(--color-accent);
    font-style: italic;
}
.brand-story p {
    color: #aaa;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
}
.usp-section {
    margin-top: 40px;
}
.usp-section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
}
.usp-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.usp-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 0.95rem;
}
.usp-list ion-icon {
    font-size: 1.2rem;
    color: var(--color-accent);
}
/* Responsive */
@media (max-width: 900px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .feature-left {
        min-height: 400px;
    }
    .feature-right {
        padding: 40px 20px;
    }
}

/* Footer Styles */
.main-footer {
    background-color: #f8f9fa;
    /* Light gray background like image */
    color: #333;
    padding: 60px 0 20px;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
}
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}
.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #000;
    font-weight: 700;
}
.footer-col address {
    font-style: normal;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}
.contact-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #555;
}
.contact-info ion-icon {
    color: var(--color-accent);
}
.chat-link {
    display: inline-block;
    color: #555;
    text-decoration: underline;
    margin-top: 5px;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: #555;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}
.follow-text {
    margin-bottom: 15px;
    font-weight: 700;
    color: #000;
}
.social-icons {
    display: flex;
    gap: 15px;
}
.social-icons a {
    font-size: 1.5rem;
    color: #000;
    transition: var(--transition);
}
.social-icons a:hover {
    color: var(--color-accent);
}
/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #e1e1e1;
    padding-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #555;
    gap: 20px;
}
.bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.bottom-links a {
    text-decoration: underline;
    color: #555;
}
.bottom-links a:hover {
    color: var(--color-accent);
}
.made-by .heart {
    color: #ff0000;
}
.made-by {
    font-weight: 600;
    color: #000;
    border-bottom: 1px solid #000;
    /* Subtle underline style like typical credits */
    display: inline-block;
}
/* Responsive Footer */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .bottom-links {
        justify-content: center;
        gap: 15px;
    }
}
/* =========================================
   About Page - Abstract & Creative
   ========================================= */
.about-page {
    background-color: #000;
    color: white;
    overflow-x: hidden;
}
/* Hero Section */
.about-hero {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 70%);
}
.spotlight {
    position: absolute;
    top: -50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.2) 0%, transparent 60%);
    transform: translateX(-50%);
    filter: blur(80px);
    animation: pulseLight 8s infinite alternate;
}
@keyframes pulseLight {
    0% {
        opacity: 0.3;
        transform: translateX(-50%) scale(0.8);
    }
    100% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1.2);
    }
}
.about-hero-content {
    text-align: center;
    z-index: 2;
}
.about-hero-content h1 {
    font-size: 6rem;
    font-family: var(--font-heading);
    letter-spacing: 10px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #999, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(30px);
    animation: revealText 1.5s forwards ease-out 0.5s;
}
.about-hero-content p {
    font-size: 1.5rem;
    color: var(--color-accent);
    letter-spacing: 2px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards ease-out 1.2s;
}
@keyframes revealText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeUp 1s forwards ease-out 2s;
}
.scroll-indicator ion-icon {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}
/* Narrative Section (Zig-Zag) */
.narrative-section {
    padding: 100px 0;
    background-color: #050505;
}
.story-block {
    display: flex;
    align-items: center;
    margin-bottom: 150px;
    gap: 80px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}
.story-block.visible {
    opacity: 1;
    transform: translateY(0);
}
.story-block.reverse {
    flex-direction: row-reverse;
}
.story-img {
    flex: 1;
    height: 500px;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
    /* Slight softening */
}
/* .story-img img {
    width: 100%;
    height: 120%;
  
    object-fit: cover;
    transform: translateY(-10%);
  
    transition: transform 0.5s;
} */
.story-text {
    flex: 1;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--color-accent);
}
.story-text h3 {
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-bottom: 20px;
    font-weight: 300;
}
.story-text p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
}
/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: #0a0a0a;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}
.stat-item h2 {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: white;
    margin-bottom: 10px;
}
.stat-item span {
    color: var(--color-accent);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}
/* Philosophy Section */
.philosophy-section {
    padding: 150px 0;
    background: url('https://www.transparenttextures.com/patterns/cubes.png'), #000;
    /* Subtle texture */
    text-align: center;
}
.center-title {
    margin-bottom: 80px;
}
.center-title::after {
    left: 50%;
    transform: translateX(-50%);
}
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}
.ph-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
}
.ph-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.ph-card:nth-child(2) {
    transition-delay: 0.2s;
}
.ph-card:nth-child(3) {
    transition-delay: 0.4s;
}
.ph-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: var(--color-accent);
}
.ph-icon {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 30px;
}
.ph-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: white;
}
.ph-card p {
    color: #999;
    font-size: 1rem;
}
/* Responsive About */
@media (max-width: 900px) {
    .about-hero {
    height: 58vh;
    padding: 10px;
}
    .about-hero-content h1 {
        font-size: 3.5rem;
    }
    .story-block {
        flex-direction: column;
        text-align: center;
    }
    .story-block.reverse {
        flex-direction: column;
    }
    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
/*     .story-img {
        width: 100%;
        height: 300px;
    } */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
	.narrative-section {
    padding: 0px;
    background-color: #050505;
}
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
}
      /* Shop Banner & Liquid Effect */
        .shop-banner {
            position: relative;
            width: 100%;
            height: 400px;
            background: #000;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--color-secondary);
            border-radius: 15px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
            cursor: none;
        }

        .liquid-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        /* Animated Gradient Layers */
        .gradient-layer {
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, 
                var(--color-accent-1), 
                var(--color-accent-2), 
                var(--color-accent-3), 
                var(--color-accent-4)
            );
            background-size: 400% 400%;
            animation: gradientFlow 20s ease infinite;
            opacity: 0.7;
        }

        .gradient-layer-2 {
            background: linear-gradient(135deg, 
                var(--color-accent-4), 
                transparent 30%, 
                var(--color-accent-3)
            );
            background-size: 300% 300%;
            animation: gradientFlow 15s ease-in-out infinite reverse;
            opacity: 0.5;
            mix-blend-mode: overlay;
        }

        .gradient-layer-3 {
            background: radial-gradient(
                circle at 20% 80%,
                var(--color-accent-1) 0%,
                transparent 50%
            );
            animation: pulse 12s ease-in-out infinite alternate;
            opacity: 0.6;
        }

        /* Interactive Cursor 'Force' Effect */
        .cursor-force {
            position: absolute;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: radial-gradient(circle, var(--color-secondary) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 10;
            transition: width 0.3s, height 0.3s, opacity 0.3s;
            opacity: 0;
        }

        /* Ripple Effect Elements */
        .ripple {
            position: absolute;
            border-radius: 50%;
            border: 2px solid rgb(255, 255, 255);
            animation: rippleExpand 4s ease-out forwards;
            pointer-events: none;
        }

        /* Glowing Blob Elements */
        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            z-index: 1;
            opacity: 0.4;
        }

        .blob-1 {
            width: 300px;
            height: 300px;
            background: var(--color-accent-1);
            top: 10%;
            left: 10%;
            animation: float 25s infinite linear;
        }

        .blob-2 {
            width: 250px;
            height: 250px;
            background: var(--color-accent-3);
            bottom: 10%;
            right: 15%;
            animation: float 20s infinite linear reverse;
        }

        /* Content Styling */
        .banner-content {
            position: relative;
            z-index: 5;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 40px;
            pointer-events: none;
        }

        .banner-content h2 {
            font-family: var(--font-heading);
            font-size: 3.5rem;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: white;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }

        .banner-content p {
            font-size: 1.2rem;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            line-height: 1.5;
        }

        /* Animations */
        @keyframes gradientFlow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.4; }
            100% { transform: scale(1.1); opacity: 0.7; }
        }

        @keyframes float {
            0% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(100px, 50px) rotate(90deg); }
            50% { transform: translate(50px, 100px) rotate(180deg); }
            75% { transform: translate(-50px, 50px) rotate(270deg); }
            100% { transform: translate(0, 0) rotate(360deg); }
        }

        @keyframes rippleExpand {
            0% {
                width: 0;
                height: 0;
                opacity: 0.7;
            }
            100% {
                width: 500px;
                height: 500px;
                opacity: 0;
            }
        }

        /* Custom Cursor */
        .shop-banner:hover .cursor-force {
            width: 200px;
            height: 200px;
            opacity: 0.3;
        }

        /* Instructions & Controls */
        .instructions {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 15px 25px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            z-index: 100;
            text-align: center;
            max-width: 90%;
            font-size: 0.9rem;
        }

        .instructions p {
            margin: 5px 0;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .shop-banner {
                height: 300px;
            }
            
            .banner-content h2 {
                font-size: 2.5rem;
            }
            
            .banner-content p {
                font-size: 1rem;
            }
            
            .blob {
                filter: blur(30px);
            }
            
            .blob-1, .blob-2 {
                width: 150px;
                height: 150px;
            }
        }
/* Product Grid */
.shop-section {
    padding: 60px 0;
    background-color: var(--color-secondary);
}
.shop-filters {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-light-gray);
    font-family: var(--font-body);
}
.sort-dropdown {
    cursor: pointer;
    font-weight: 700;
    color: var(--color-primary);
}
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}
.product-card {
    background: #fff;
    transition: var(--transition);
    position: relative;
    border: 1px solid transparent;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: #f0f0f0;
}
.product-image {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: #f9f9f9;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.product-card:hover .product-image img {
    transform: scale(1.05);
}
.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(-10px);
}
.product-card:hover .wishlist-btn {
    opacity: 1;
    transform: translateY(0);
}
.wishlist-btn:hover {
    background: var(--color-accent);
    color: white;
}
.wishlist-btn.active {
    color: red;
}
.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}
.product-card:hover .product-overlay {
    opacity: 1;
}
.quick-view {
    background: white;
    color: black;
    border: none;
    padding: 10px 25px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}
.quick-view:hover {
    background: var(--color-accent);
    color: white;
}
.product-info {
    padding: 20px 0;
    text-align: center;
}
.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--color-text);
}
.product-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.price {
    font-weight: 700;
    color: var(--color-accent);
}
.variations {
    display: flex;
    gap: 5px;
}
.color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: inline-block;
}
/* Shop Layout */
.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: flex-start;
}
/* Modern Premium Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
}

/* Card Shell */
.product-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.06);
    transition: transform .35s ease, box-shadow .35s ease, border .35s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,.08);
    border-color: rgba(0,0,0,.12);
}

/* Image Area */
.product-image {
    background: #f6f7f8;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(.92);
    transition: transform .5s ease;
}

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

/* Glass Hover Bar */
.product-overlay {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,.85);
    display: flex;
    justify-content: center;
    gap: 14px;
    transition: .35s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Action Buttons */
.product-overlay button,
.product-overlay a {
    border: 1px solid #111;
    background: #111;
    color: #fff;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: .78rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .3s ease;
}

.product-overlay button:hover,
.product-overlay a:hover {
    background: transparent;
    color: #111;
}

/* Product Info */
.product-info {
    text-align: center;
    padding: 18px 10px 22px;
}

.product-info h3 {
    font-size: 1rem;
    letter-spacing: .4px;
    margin-bottom: 6px;
    font-weight: 700;
    color: #111;
}

/* Price Styling */
.price {
    font-weight: 700;
    font-size: .95rem;
    color: #ff7b00;
}

/* Subtle divider line */
.product-info::before {
    content: "";
    display: block;
    width: 60%;
    height: 1px;
    background: rgba(0,0,0,.08);
    margin: 0 auto 12px;
}
.shop-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 25px 0;
  font-family: inherit;
}

.shop-pagination a,
.shop-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  font-size: 14px;
  text-decoration: none;
  transition: all .25s ease;
}

.shop-pagination a:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}

.shop-pagination .current {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
  font-weight: 600;
  pointer-events: none;
}

.shop-pagination .prev,
.shop-pagination .next {
  padding: 0 14px;
  font-weight: 500;
}

.shop-pagination .dots {
  border: none;
  background: transparent;
  pointer-events: none;
}

/* 📱 Mobile Responsive */
@media (max-width: 600px) {

  .shop-pagination {
    gap: 6px;
  }

  /* Hide extra page numbers — show first, current, last */
  .shop-pagination a:not(.prev):not(.next):not(.current):not(:first-of-type):not(:last-of-type) {
    display: none;
  }

  .shop-pagination .dots {
    display: inline-flex;
  }

  .shop-pagination a,
  .shop-pagination span {
    min-width: 34px;
    height: 34px;
    font-size: 13px;
    border-radius: 6px;
  }

  .shop-pagination .prev,
  .shop-pagination .next {
    padding: 0 10px;
  }
  .product-grid{
    grid-template-columns: 1fr;
  }
}

/* Sidebar */
.shop-sidebar {
    background: #fff;
    padding: 25px;
    border: 1px solid #eee;
    position: sticky;
    top: 120px;
}

.filter-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.category-list li {
    margin-bottom: 12px;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: var(--color-text);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.category-list li.active a,
.category-list li a:hover {
    color: var(--color-accent);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 992px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }
    .shop-sidebar {
        position: relative;
        top: auto;
    }
}


/* ===============================
   GLOBAL RESET
================================ */
.single-product-page {
    background: #ffffff;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: #111;
    padding-bottom: 120px;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}
.variation-btn {
  border: 1px solid #ccc;
  padding: 6px 14px;
  margin: 4px;
  cursor: pointer;
  background:#fff;
  border-radius:6px;
}

.variation-btn.selected {
  border-color:#000;
  font-weight:600;
}
.wc-select-hidden select {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.variation-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0 10px;
}

.variation-btn {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: #fff;
  /* cursor: pointer; */
}

.variation-btn.is-selected {
  border-color: #111;
  background: #f3f3f3;
}

/* ===============================
   BREADCRUMBS
================================ */
.product-breadcrumbs {
    margin: 40px auto 30px;
    font-size: 13px;
    color: #888;
}

.product-breadcrumbs a {
    color: #888;
    text-decoration: none;
}

.product-breadcrumbs a:hover {
    color: #111;
}

/* ===============================
   MAIN GRID
================================ */
.single-product-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

/* ===============================
   PRODUCT GALLERY
================================ */
.product-gallery {
    position: relative;
}

.woocommerce-product-gallery {
    background: #f7f7f7;
    border-radius: 18px;
    padding: 40px;
}

.woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.woocommerce-product-gallery__trigger {
    right: 24px;
    top: 24px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

/* Thumbnails */
.flex-control-thumbs {
    margin-top: 20px;
    display: flex;
    gap: 14px;
}

.flex-control-thumbs li {
    list-style: none;
}

.flex-control-thumbs img {
    background: #f3f3f3;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s ease;
}

.flex-control-thumbs img:hover {
    background: #eaeaea;
}

/* ===============================
   PRODUCT DETAILS
================================ */
.product-details {
    padding-top: 10px;
}

.product-title {
    font-size: 34px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
}

/* ===============================
   VARIATIONS
================================ */
.custom-variations {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.variation-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.variation-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.variation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.variation-btn {
    /* border: 1px solid #e3e3e3; */
    background: #fff;
    padding: 9px 14px;
    font-size: 13px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.variation-btn:hover {
    border-color: #111;
}

.variation-btn.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

/* ===============================
   META / CATEGORY
================================ */
.product-meta {
    margin-top: 40px;
    font-size: 13px;
    color: #777;
}

.product-categories a {
    color: #777;
    text-decoration: none;
}

.product-categories a:hover {
    color: #111;
}

/* ===============================
   TABS
================================ */
.product-tabs {
    margin-top: 100px;
}

.woocommerce-tabs ul.tabs {
    display: flex;
    gap: 40px;
    border-bottom: 1px solid #eee;
    padding-left: 0;
}

.woocommerce-tabs ul.tabs li {
    list-style: none;
}

.woocommerce-tabs ul.tabs li a {
    font-size: 15px;
    font-weight: 500;
    color: #888;
    padding-bottom: 14px;
    display: inline-block;
    text-decoration: none;
}

.woocommerce-tabs ul.tabs li.active a {
    color: #111;
    border-bottom: 2px solid #111;
}

.woocommerce-Tabs-panel {
    margin-top: 40px;
    max-width: 900px;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}

/* ===============================
   ADDITIONAL INFO TABLE
================================ */
.shop_attributes {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.shop_attributes th,
.shop_attributes td {
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 14px;
}

.shop_attributes th {
    width: 240px;
    color: #666;
    font-weight: 500;
}

/* ===============================
   REVIEWS
================================ */
.woocommerce-Reviews-title {
    font-size: 20px;
    margin-bottom: 20px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    border: 1px solid #ddd;
    padding: 10px 12px;
    border-radius: 8px;
}

.comment-form .submit {
    background: #111;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
}

/* ===============================
   RELATED PRODUCTS
================================ */
.related.products {
    margin-top: 120px;
}

.related.products h2 {
    font-size: 26px;
    margin-bottom: 40px;
}

.related.products ul.products {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.related.products li.product {
    text-align: center;
}

.related.products img {
    background: #f6f6f6;
    padding: 30px;
    border-radius: 14px;
}

.related.products .woocommerce-loop-product__title {
    font-size: 16px;
    margin-top: 14px;
}

.related.products .price {
    font-size: 14px;
    color: #555;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 991px) {
    .single-product-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .related.products ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .related.products ul.products {
        grid-template-columns: 1fr;
    }
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product{
    width: 100% !important;
}
.woocommerce .products ul::after, .woocommerce .products ul::before, .woocommerce ul.products::after, .woocommerce ul.products::before{
    display: none !important;
}
.variation-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.variation-btn input { display:none; }

.variation-btn span {
    padding: 8px 14px;
    border: 1px solid #ddd;
    border-radius: 30px;
    cursor: pointer;
    font-size: 13px;
    transition: .25s;
    background:#fff;
}

.variation-btn:hover span {
    border-color:#888;
}

.variation-btn input:checked + span {
    background:#111;
    color:#fff;
    border-color:#111;
}
.single-product div#product-28 {
    margin-top: 40px;
}

/* Contact Us Page Styles */
.contact-hero {
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1588495403788-a5b767f51f45?q=80&w=693&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    /* Using a chandelier/lighting image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.contact-section {
    padding: 80px 0;
    background-color: var(--color-secondary);
}
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.info-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.info-block ion-icon {
    font-size: 2rem;
    color: var(--color-accent);
    min-width: 30px;
}
.info-block h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--color-primary);
}
.info-block p {
    color: #666;
    line-height: 1.6;
}
.contact-form-column {
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.form-group {
    position: relative;
    margin-bottom: 30px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    outline: none;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}
.form-group textarea {
    resize: vertical;
}
.form-group label {
    position: absolute;
    top: 10px;
    left: 0;
    color: #999;
    transition: var(--transition);
    pointer-events: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group input:not(:placeholder-shown),
.form-group textarea:not(:placeholder-shown) {
    border-color: var(--color-accent);
}
.form-group input:focus+label,
.form-group textarea:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -20px;
    font-size: 0.8rem;
    color: var(--color-accent);
}
.contact-form .btn {
    width: 100%;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}
.map-section {
    height: 450px;
    background-color: #f4f4f4;
}
/* Responsive Contact Info */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-hero {
        height: 40vh;
    }
    .contact-form-column {
        padding: 30px 20px;
    }
}

.shop-pagination {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.shop-pagination .page-numbers {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    margin: 0 6px !important;
    padding: 0 12px !important;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: none !important;
    border: 1px solid #e3e3e3;
    color: #444;
    background: #fff;
    transition: all .25s ease;
}
.woocommerce nav.woocommerce-pagination ul li{
    border-right: none !important;
}
/* Hover state */
.shop-pagination .page-numbers:hover {
  border-color: #111;
  color: #111;
}

/* Active page */
.shop-pagination .page-numbers.current {
  background: #111;
  color: #fff;
  border-color: #111;
  cursor: default;
}

/* Dots */
.shop-pagination .page-numbers.dots {
  border: none;
  background: transparent;
  cursor: default;
}

/* Prev / Next buttons */
.shop-pagination .page-numbers.prev,
.shop-pagination .page-numbers.next {
  padding: 0 16px;
  font-weight: 600;
}

/* Disable click highlight */
.shop-pagination .page-numbers:focus {
  outline: none;
  box-shadow: none;
}
.woocommerce div.product {
    margin-top: 50px;
    margin-bottom: 0;
    position: relative;
}
/* BASICS — make product cards equal height */
.related.products ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.related.products ul.products li.product {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  padding: 18px 16px 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease;
  min-height: 420px;   /* 🔥 control card height */
}

/* Hover depth */
.related.products ul.products li.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,.14);
}

/* 🔥 UNIFORM IMAGE AREA */
.related.products .woocommerce-LoopProduct-link img {
  height: 220px;          /* same height for all */
  width: 100%;
  object-fit: contain;    /* keeps proportions */
  background: #f4f6f8;
  border-radius: 14px;
  padding: 12px;
}

/* Title alignment */
.related.products .woocommerce-loop-product__title {
  text-align: center;
  margin: 16px 0 10px;
  min-height: 42px;       /* keeps rows aligned */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Content flex layout */
.related.products .woocommerce-LoopProduct-link {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Button section pinned to bottom */
.related.products a.button,
.related.products .add-request-quote-button,
.related.products .yith-ywraq-add-to-quote {
  margin-top: auto;
}

/* Button style upgrade */
.related.products a.button,
.related.products .add-request-quote-button {
  width: 100%;
  text-align: center;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 600;
}

/* Remove extra clearfix gaps */
.related.products .clear { display:none; }
@media(max-width: 768px){
  .related.products ul.products {
    grid-template-columns: repeat(2, 1fr);
  }

  .related.products .woocommerce-LoopProduct-link img {
    height: 200px;
  }
}

@media(max-width: 480px){
  .related.products ul.products {
    grid-template-columns: 1fr;
  }
}
.variations_form a.reset_variations {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1.5px solid #d0d5dd;
  background: #f7f8fa;
  color: #344054 !important;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none !important;
  transition: all .25s ease;
  margin-top: 8px;
}

/* Hover + focus */
.variations_form a.reset_variations:hover,
.variations_form a.reset_variations:focus {
  background: #eef1f5;
  border-color: #98a2b3;
  color: #111827 !important;
  transform: translateY(-1px);
}

/* Disabled state */
.variations_form a.reset_variations[style*="hidden"],
.variations_form a.reset_variations.disabled {
  opacity: .35;
  pointer-events: none;
}
/* Quantity Wrapper */
.quantity {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid #d0d5dd;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

/* Input Field */
.quantity .qty {
  width: 55px;
  height: 42px;
  border: none;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  outline: none;
  box-shadow: none;
  padding: 0;
}

/* Remove browser arrows */
.quantity .qty::-webkit-outer-spin-button,
.quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity .qty[type="number"] {
  -moz-appearance: textfield;
}

/* Step Buttons */
.quantity button {
  width: 38px;
  height: 42px;
  border: none;
  background: #f2f4f7;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  color: #344054;
  transition: .25s ease;
}

/* Hover + Active */
.quantity button:hover {
  background: #e4e7ec;
}
.quantity button:active {
  background: #d0d5dd;
}

/* Focus ring */
.quantity button:focus,
.quantity .qty:focus {
  outline: 2px solid #A3CAFF;
  outline-offset: -2px;
}
/* Luxury & Reach Section */
.luxury-reach-section {
    padding: 80px 0;
    background-color: #0c0c0c; /* Deep rich black */
    color: var(--color-secondary);
}
.luxury-reach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.luxury-block {
    position: relative;
    padding-right: 40px;
}
.luxury-block::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--color-accent), transparent);
}
.section-title-large {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    color: var(--color-accent);
    margin-bottom: 30px;
    text-transform: uppercase;
}
.luxury-content h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 400;
}
.luxury-content p {
    margin-bottom: 15px;
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.8;
}
.footprint-block {
    padding: 20px;
}
.footprint-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 40px;
    position: relative;
}
.footprint-card .section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 25px;
}
.footprint-card p {
    margin-bottom: 20px;
    color: #ddd;
    font-size: 1rem;
    line-height: 1.7;
}
/* Responsive Luxury Section */
@media (max-width: 992px) {
    .luxury-reach-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .luxury-block::after {
        display: none;
    }
    .luxury-block {
        padding-right: 0;
        text-align: center;
    }
    .section-title-large {
        font-size: 2.5rem;
    }
    .footprint-card {
        text-align: center;
    }
     .timeline {
        flex-direction: column;
        padding-left: 30px;
    }
    .timeline::before {
        width: 2px;
        height: 100%;
        top: 0;
        left: 20px;
        /* Adjust to vertical line position */
    }
    .timeline-item {
        width: 100%;
        text-align: left;
        margin-bottom: 40px;
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }
    .timeline-bulb {
        margin: 0;
        flex-shrink: 0;
        /* Prevent bulb shrinking */
    }
    .story-block,
    .story-block.reverse {
        flex-direction: column;
        gap: 30px;
    }
/*     .story-img {
        height: 300px;
        width: 100%;
    } */
    .cat-col-1, .cat-col-2, .cat-col-3{
        gap: 20px;
    }
.timeline::before {
    content: '';
    position: absolute !important;
    top: 36px !important;
    left: 16px !important;
    width: 1% !important;
    height: 75% !important;
    background: #e0e0e0 !important;
    z-index: 1;
}
.timeline-section{
    padding-bottom: 50px;
}
.philosophy-section{
    padding-top: 50px;
    padding-bottom: 50px;
}
}
/* Timeline Section */
.timeline-section {
    padding: 100px 0;
    background-color: var(--color-secondary);
    overflow: hidden;
}
.center-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    color: black;
    display: block;
}
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
}
/* The Line */
.timeline::before {
    content: '';
    position: absolute;
    top: 55px;
    /* Adjust to align with bulb center */
    left: 0;
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}
.timeline-item {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 200px;
}
.timeline-bulb {
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid var(--color-accent);
    /* Gold border */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--color-accent);
    font-size: 1.2rem;
    box-shadow: 0 0 0 5px white;
    /* Gap specific hack */
    transition: var(--transition);
}
.timeline-item:hover .timeline-bulb {
    background: var(--color-accent);
    color: white;
    box-shadow: 0 0 15px var(--color-accent);
}
.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 5px;
}
.timeline-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}
/* ===============================
   SHOP RESPONSIVE DESIGN
================================= */

.shop-section {
  padding: 50px 0;
}

.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: flex-start;
}

/* Sidebar */
.shop-sidebar {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  position: sticky;
  top: 110px;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Close button hidden on desktop */
.sidebar-close {
  display: none;
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

.category-list {
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.category-list li a {
  display: flex;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: #111;
  font-weight: 600;
  background: #f7f7f7;
  transition: 0.3s ease;
}

.category-list li a:hover {
  background: #111;
  color: #fff;
}

.category-list li.active a {
  background: #111;
  color: #fff;
}

/* Shop Content */
.shop-content {
  width: 100%;
}

.shop-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* Product card responsive */
.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

/* Mobile filter button hidden on desktop */
.mobile-filter-bar {
  display: none;
  margin-bottom: 16px;
}

.mobile-filter-btn {
  width: 100%;
  background: #111;
  color: #fff;
  border: none;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

/* Sidebar overlay for mobile */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 9998;
}

/* ===============================
   TABLET RESPONSIVE
================================= */
@media (max-width: 1024px) {
  .shop-layout {
    grid-template-columns: 240px 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===============================
   MOBILE RESPONSIVE
================================= */
@media (max-width: 768px) {

  .shop-layout {
    grid-template-columns: 1fr;
  }

  /* Show mobile filter bar */
  .mobile-filter-bar {
    display: block;
  }

  /* Sidebar becomes off-canvas */
  .shop-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 85%;
    max-width: 320px;
    z-index: 9999;
    border-radius: 0;
    padding: 20px;
    transition: 0.35s ease;
    overflow-y: auto;
  }

  .shop-sidebar.active {
    left: 0;
  }

  .sidebar-close {
    display: block;
  }

  .sidebar-overlay.active {
    display: block;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .shop-filters {
    flex-direction: column;
    align-items: flex-start;
  }

  .sort-dropdown,
  .result-count {
    width: 100%;
  }
  .logo {
    width: 23% !important;
}
}
.logo {
    width: 12%;
}
img.custom-logo {
    /* height: 50%; */
    max-width: 100%;
    height: auto;
}
/* Terms Page Styles */
.page-hero {
    height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1588495403788-a5b767f51f45?q=80&w=693&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.terms-section {
    padding: 80px 0;
    background-color: var(--color-secondary);
}
.terms-content {
    /* max-width: 800px; */
    margin: 0 auto;
    font-family: var(--font-body);
}
.terms-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--color-primary);
}
.terms-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
}
.terms-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    color: #555;
}
.terms-content ul li {
    margin-bottom: 10px;
}
/* Footer Styles */

@media (max-width: 768px) {
    .terms-section {
        padding: 40px 0;
    }
    .terms-content h3 {
        font-size: 1.2rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}
.faq-category {
    margin-bottom: 50px;
}
.faq-category h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--color-primary);
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}
.faq-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
}
.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.accordion-item {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: var(--transition);
}
.accordion-item:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
}
.accordion-header {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    text-align: left;
    transition: var(--transition);
}
.accordion-header:hover {
    color: var(--color-accent);
}
.accordion-header .icon {
    font-size: 1.5rem;
    color: var(--color-accent);
    transition: transform 0.3s ease;
}
.accordion-item.active .accordion-header .icon {
    transform: rotate(45deg);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 25px;
    background-color: #fff;
    border-top: 1px solid transparent;
}
.accordion-item.active .accordion-content {
    padding: 20px 25px;
    border-top: 1px solid #f0f0f0;
}
.accordion-content p {
    color: #666;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 20px;
    }
    .accordion-header {
        font-size: 1rem;
        padding: 15px 20px;
    }
}
.reveal-text span {
  opacity: 0.2;
  transition: opacity 0.2s ease;
}

.home-gallery{
    padding:100px 0;
    background:#fff;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading span{
    color:#177d82;
    font-size:14px;
    letter-spacing:3px;
    text-transform:uppercase;
}

.section-heading h2{
    font-size:46px;
    margin:15px 0;
    font-weight:600;
}

.section-heading p{
    max-width:650px;
    margin:auto;
    color:#666;
}

.gallery-section{
    padding:100px 0;
    background:#fafafa;
}

.gallery-heading{
    text-align:center;
    margin-bottom:60px;
}

.gallery-heading span{
    color:#177d82;
    font-size:13px;
    letter-spacing:3px;
    text-transform:uppercase;
}

.gallery-heading h2{
    font-size:48px;
    margin:15px 0;
}

.gallery-heading p{
    max-width:650px;
    margin:auto;
    color:#777;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-auto-rows:230px;
    gap:18px;
}

.gallery-item{
    overflow:hidden;
    border-radius:18px;
    position:relative;
}

.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

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

.gallery-item::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.35),transparent);
    opacity:0;
    transition:.4s;
}

.gallery-item:hover::before{
    opacity:1;
}

/* Featured image */
.featured{
    grid-column:span 2;
    grid-row:span 2;
}

/* Tall image */
.tall{
    grid-row:span 2;
}

/* Wide image */
.wide{
    grid-column:span 2;
}

@media(max-width:992px){

.gallery-grid{
    grid-template-columns:repeat(2,1fr);
}

.featured,
.tall,
.wide{
    grid-column:unset;
    grid-row:unset;
}

}

@media(max-width:576px){

.gallery-grid{
    grid-template-columns:1fr;
}

.gallery-heading h2{
    font-size:34px;
}

}
.gallery-btn{
    text-align:center;
    margin-top:60px;
}

.btn-gallery{
    display:inline-block;
    background:#111;
    color:#fff;
    padding:16px 40px;
    border-radius:50px;
    text-decoration:none;
    transition:.3s;
}

.btn-gallery:hover{
    background:#177d82;
    color:#fff;
}
/* ==========================
   REQUEST A QUOTE PAGE
========================== */

.woocommerce.ywraq-wrapper{
    max-width:1200px;
    margin:80px auto;
    padding:0 20px;
    font-family:var(--font-body);
}

.woocommerce.ywraq-wrapper .entry-title,
.yith-ywraq-mail-form-wrapper h3{
    font-family:var(--font-heading);
    color:var(--color-primary);
    font-size:42px;
    text-align:center;
    margin-bottom:40px;
    position:relative;
    font-weight:700;
}

.yith-ywraq-mail-form-wrapper h3{
    font-size:34px;
    margin-bottom:35px;
}

.woocommerce.ywraq-wrapper .entry-title:after,
.yith-ywraq-mail-form-wrapper h3:after{
    content:"";
    width:80px;
    height:4px;
    background:var(--color-accent);
    display:block;
    margin:15px auto 0;
    border-radius:30px;
}

/*==============================
TABLE
===============================*/

#yith-ywrq-table-list{
    width:100%;
    border:none;
    border-collapse:collapse;
    overflow:hidden;
    border-radius:18px;
    background:#fff;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    margin-bottom:50px;
}

#yith-ywrq-table-list thead{
    background:var(--color-primary);
}

#yith-ywrq-table-list thead th{
    color:#fff;
    padding:22px;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    border:none;
    letter-spacing:.8px;
}

#yith-ywrq-table-list tbody td{
    padding:25px;
    vertical-align:middle;
    border-bottom:1px solid #ededed;
}

#yith-ywrq-table-list tbody tr:last-child td{
    border-bottom:none;
}

.product-thumbnail img{
    width:100px;
    height:100px;
    object-fit:cover;
    border-radius:14px;
    background:#fafafa;
    padding:10px;
    transition:.3s;
}

.product-thumbnail img:hover{
    transform:scale(1.05);
}

.product-name a{
    color:var(--color-primary);
    font-weight:700;
    font-size:20px;
    text-decoration:none;
}

.product-name ul{
    margin-top:12px!important;
    padding-left:18px;
    color:#666;
    line-height:1.8;
    font-size:14px;
}

.product-name strong{
    color:var(--color-primary);
}

/*==============================
REMOVE
==============================*/

.yith-ywraq-item-remove{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#f4f4f4;
    color:#d93025!important;
    font-size:24px!important;
    transition:.3s;
}

.yith-ywraq-item-remove:hover{
    background:#d93025;
    color:#fff!important;
}

/*==============================
QTY
==============================*/

.quantity input.qty{
    width:90px;
    height:48px;
    border:2px solid #ddd;
    border-radius:10px;
    text-align:center;
    font-size:16px;
}

.quantity input.qty:focus{
    border-color:var(--color-accent);
    outline:none;
}

/*==============================
BUTTONS
==============================*/

.button,
.woocommerce a.button,
.woocommerce button.button,
input[type=submit]{

    background:var(--color-accent)!important;
    color:#fff!important;
    border:none!important;
    padding:15px 34px!important;
    border-radius:50px!important;
    font-weight:600!important;
    transition:.35s!important;
    box-shadow:0 10px 25px rgba(23,125,130,.25);
}

.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
input[type=submit]:hover{

    background:var(--color-primary)!important;
    transform:translateY(-3px);
}

.yith-ywraq-before-table{
    margin-bottom:35px;
}

.update-list-wrapper{
    margin-top:30px;
}

/*==============================
FORM CARD
==============================*/

.yith-ywraq-mail-form-wrapper{

    background:#fff;
    border-radius:22px;
    padding:55px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    margin-top:70px;

}

/*==============================
FORM GRID
==============================*/

#yith-ywraq-default-form{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;

}

#message_field{
    grid-column:1/-1;
}

.raq-send-request-row{
    grid-column:1/-1;
    margin-top:10px;
}

/*==============================
FIELDS
==============================*/

#yith-ywraq-default-form label{

    display:block;
    margin-bottom:10px;
    font-weight:600;
    color:var(--color-primary);

}

#yith-ywraq-default-form input[type=text],
#yith-ywraq-default-form input[type=email],
#yith-ywraq-default-form textarea{

    width:100%;
    background:#fafafa;
    border:2px solid transparent;
    border-radius:12px;
    padding:16px 18px;
    font-size:15px;
    transition:.3s;
    font-family:var(--font-body);

}

#yith-ywraq-default-form textarea{

    min-height:170px;
    resize:vertical;

}

#yith-ywraq-default-form input:focus,
#yith-ywraq-default-form textarea:focus{

    border-color:var(--color-accent);
    background:#fff;
    outline:none;

}

/*==============================
OPTIONAL TEXT
==============================*/

.optional{
    color:#999;
    font-size:13px;
}

/*==============================
NOTICE
==============================*/

.ywraq-question-message{color: black;background:#177d8210;border-left:5px solid var(--color-accent);padding:18px 25px;border-radius:10px;margin-bottom:30px;}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:991px){

#yith-ywraq-default-form{
grid-template-columns:1fr;
}

.yith-ywraq-mail-form-wrapper{
padding:35px;
}

.product-thumbnail img{
width:80px;
height:80px;
}

.product-name a{
font-size:18px;
}

}

@media(max-width:768px){

#yith-ywrq-table-list{
display:block;
overflow-x:auto;
}

.woocommerce.ywraq-wrapper .entry-title{
font-size:32px;
}

.yith-ywraq-mail-form-wrapper h3{
font-size:28px;
}

}
.yith-request-a-quote-page h1.entry-title {
    display: none;
}
