/* ===========================================
   Romeo Is Alive - Main Stylesheet
   Pixel-perfect conversion from HTML design
   =========================================== */

/* ===========================================
   TABLE OF CONTENTS
   1. CSS Reset & Base Styles
   2. Typography
   3. Utility Classes
   4. Layout & Grid
   5. Top Bar
   6. Header & Navigation
   7. Off-Canvas (Search, Cart, Menu)
   8. Hero Slider
   9. Content Sections
   10. Features Grid
   11. Treatments Section
   12. Testimonials
   13. Footer
   14. WooCommerce Styles
   15. Responsive Design
   =========================================== */

/* ===========================================
   1. CSS RESET & BASE STYLES
   =========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #050505;
    color: #d6d3d1;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===========================================
   2. TYPOGRAPHY
   =========================================== */
::selection {
    background-color: #D4AF37;
    color: #000;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

.italic {
    font-style: italic;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.tracking-0_2em {
    letter-spacing: 0.2em;
}

.tracking-0_3em {
    letter-spacing: 0.3em;
}

.tracking-0_4em {
    letter-spacing: 0.4em;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.75;
}

.leading-loose {
    line-height: 2;
}

/* ===========================================
   3. UTILITY CLASSES
   =========================================== */

/* Colors */
.text-white {
    color: #fff;
}

.text-black {
    color: #000;
}

.text-stone-100 {
    color: #f5f5f4;
}

.text-stone-200 {
    color: #e7e5e4;
}

.text-stone-300 {
    color: #d6d3d1;
}

.text-stone-400 {
    color: #a8a29e;
}

.text-stone-500 {
    color: #78716c;
}

.text-stone-700 {
    color: #44403c;
}

.text-gold-400 {
    color: #D4AF37;
}

.bg-black {
    background-color: #000;
}

.bg-dark-050505 {
    background-color: #050505;
}

.bg-dark-0a {
    background-color: #0a0a0a;
}

.bg-dark-0f {
    background-color: #0f0f0f;
}

.bg-dark-0f0f0f {
    background-color: #0f0f0f;
}

.bg-stone-900 {
    background-color: #1c1917;
}

.bg-white-5 {
    background-color: rgba(255, 255, 255, 0.05);
}

.bg-white-10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.bg-white-30 {
    background-color: rgba(255, 255, 255, 0.3);
}

.bg-black-30 {
    background-color: rgba(0, 0, 0, 0.3);
}

.bg-black-40 {
    background-color: rgba(0, 0, 0, 0.4);
}

.bg-black-60 {
    background-color: rgba(0, 0, 0, 0.6);
}

.bg-black-95 {
    background-color: rgba(0, 0, 0, 0.95);
}

.bg-gold-400-10 {
    background-color: rgba(212, 175, 55, 0.1);
}

/* Borders */
.border {
    border-width: 1px;
    border-style: solid;
}

.border-t {
    border-top-width: 1px;
    border-top-style: solid;
}

.border-b {
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.border-l {
    border-left-width: 1px;
    border-left-style: solid;
}

.border-y {
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-style: solid;
}

.border-white-5 {
    border-color: rgba(255, 255, 255, 0.05);
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1);
}

.border-white-30 {
    border-color: rgba(255, 255, 255, 0.3);
}

.border-stone-700 {
    border-color: #44403c;
}

.border-stone-800 {
    border-color: #292524;
}

.border-stone-900 {
    border-color: #1c1917;
}

.border-gold-400 {
    border-color: #D4AF37;
}

.border-gold-400-20 {
    border-color: rgba(212, 175, 55, 0.2);
}

.border-gold-400-50 {
    border-color: rgba(212, 175, 55, 0.5);
}

/* Spacing */
.p-1 {
    padding: 0.25rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.p-10 {
    padding: 2.5rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.pt-8 {
    padding-top: 2rem;
}

.pt-10 {
    padding-top: 2.5rem;
}

.pt-20 {
    padding-top: 5rem;
}

.pb-1 {
    padding-bottom: 0.25rem;
}

.pb-4 {
    padding-bottom: 1rem;
}

.pb-10 {
    padding-bottom: 2.5rem;
}

.pb-12 {
    padding-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mb-20 {
    margin-bottom: 5rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mt-16 {
    margin-top: 4rem;
}

.mt-20 {
    margin-top: 5rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.space-y-8 > * + * {
    margin-top: 2rem;
}

/* Display & Layout */
.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.hidden {
    display: none;
}

.flex-col {
    flex-direction: column;
}

.flex-1 {
    flex: 1 1 0%;
}

.items-center {
    align-items: center;
}

.items-baseline {
    align-items: baseline;
}

.items-end {
    align-items: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

/* Positioning */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.inset-y-0 {
    top: 0;
    bottom: 0;
}

.top-0 {
    top: 0;
}

.top-10 {
    top: 2.5rem;
}

.right-0 {
    right: 0;
}

.right-10 {
    right: 2.5rem;
}

.left-0 {
    left: 0;
}

.left-10 {
    left: 2.5rem;
}

.bottom-12 {
    bottom: 3rem;
}

/* Z-index */
.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

.z-30 {
    z-index: 30;
}

.z-40 {
    z-index: 40;
}

.z-50 {
    z-index: 50;
}

.z-55 {
    z-index: 55;
}

.z-60 {
    z-index: 60;
}

/* Width & Height */
.w-full {
    width: 100%;
}

.w-2 {
    width: 0.5rem;
}

.w-3 {
    width: 0.75rem;
}

.w-5 {
    width: 1.25rem;
}

.w-8 {
    width: 2rem;
}

.w-10 {
    width: 2.5rem;
}

.w-16 {
    width: 4rem;
}

.w-24 {
    width: 6rem;
}

.w-32 {
    width: 8rem;
}

.w-2-3 {
    width: 66.666667%;
}

.h-auto {
    height: auto;
}

.h-px {
    height: 1px;
}

.h-2 {
    height: 0.5rem;
}

.h-3 {
    height: 0.75rem;
}

.h-5 {
    height: 1.25rem;
}

.h-8 {
    height: 2rem;
}

.h-24 {
    height: 6rem;
}

.h-64 {
    height: 16rem;
}

.h-96 {
    height: 24rem;
}

.h-screen {
    height: 100vh;
}

.h-600 {
    height: 600px;
}

.h-full {
    height: 100%;
}

.min-w-full {
    min-width: 100%;
}

/* Max Width */
.max-w-none {
    max-width: none;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-5xl {
    max-width: 64rem;
}

.max-w-6xl {
    max-width: 72rem;
}

.max-w-1200 {
    max-width: 1200px;
}

.max-w-1600 {
    max-width: 1600px;
}

.max-w-1920 {
    max-width: 1920px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Overflow */
.overflow-hidden {
    overflow: hidden;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

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

.overflow-y-auto {
    overflow-y: auto;
}

/* Opacity */
.opacity-0 {
    opacity: 0;
}

.opacity-10 {
    opacity: 0.1;
}

.opacity-30 {
    opacity: 0.3;
}

.opacity-80 {
    opacity: 0.8;
}

/* Pointer Events */
.pointer-events-none {
    pointer-events: none;
}

.pointer-events-auto {
    pointer-events: auto;
}

/* Cursor */
.cursor-default {
    cursor: default;
}

/* Transitions */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-colors {
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.duration-500 {
    transition-duration: 500ms;
}

.duration-700 {
    transition-duration: 700ms;
}

.duration-1000 {
    transition-duration: 1000ms;
}

.ease-in-out {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Luxury Transition */
.luxury-transition {
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Parallax Background */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Background */
.bg-cover {
    background-size: cover;
}

.bg-center {
    background-position: center;
}

.bg-fixed {
    background-attachment: fixed;
}

/* Backdrop Blur */
.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.backdrop-blur-md {
    backdrop-filter: blur(12px);
}

.backdrop-blur-xl {
    backdrop-filter: blur(24px);
}

/* Border Radius */
.rounded-full {
    border-radius: 9999px;
}

/* Shadow */
.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Filters */
.grayscale {
    filter: grayscale(100%);
}

.brightness-50 {
    filter: brightness(0.5);
}

.brightness-200 {
    filter: brightness(2);
}

/* Text Sizes */
.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.text-7xl {
    font-size: 4.5rem;
    line-height: 1;
}

.text-9xl {
    font-size: 8rem;
    line-height: 1;
}

/* Focus Styles */
.focus-outline-none:focus {
    outline: none;
}

.focus-border-gold-400:focus {
    border-color: #D4AF37;
}

/* Scroll Snap */
.snap-x {
    scroll-snap-type: x mandatory;
}

.snap-mandatory {
    scroll-snap-type: mandatory;
}

.snap-center {
    scroll-snap-align: center;
}

/* No Scrollbar */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ===========================================
   4. LAYOUT & GRID
   =========================================== */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 1920px) {
    .container {
        max-width: 1920px;
    }
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

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

/* ===========================================
   5. TOP BAR
   =========================================== */
.top-bar {
    font-size: 0.75rem;
}

.top-bar a:hover {
    color: #D4AF37;
}

/* ===========================================
   6. HEADER & NAVIGATION
   =========================================== */
.main-header {
    margin-top: 2.5rem;
}

.main-header.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-top: -2.5rem;
}

.logo-link img {
    width: 100%;
}

/* Header Actions */
.header-actions button,
.header-actions a {
    color: #fff;
}

.header-actions .group:hover {
    color: #D4AF37;
}

.hamburger-line {
    transition: all 0.3s ease;
}

.menu-trigger:hover .hamburger-line:nth-child(2) {
    width: 100%;
}

/* ===========================================
   7. OFF-CANVAS (Search, Cart, Menu)
   =========================================== */

/* Search Overlay */
.search-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.search-input {
    background: transparent;
}

/* Cart Overlay */
.cart-overlay {
    transform: translateX(100%);
}

.cart-overlay.drawer-open {
    transform: translateX(0);
}

.drawer-closed {
    transform: translateX(100%);
}

.drawer-open {
    transform: translateX(0);
}

.drawer-left-closed {
    transform: translateX(-100%);
}

/* Menu Overlay */
.menu-overlay.active {
    pointer-events: auto;
}

.menu-overlay.active .menu-backdrop {
    opacity: 1;
    pointer-events: auto;
}

.menu-overlay.active .menu-sidebar {
    transform: translateX(0);
}

/* ===========================================
   8. HERO SLIDER
   =========================================== */
.hero-slider {
    position: relative;
}

.hero-slide {
    transition: opacity 1s ease-in-out;
}

.slide-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
}

.active-slide {
    z-index: 10;
    opacity: 1;
    pointer-events: auto;
}

.active-slide .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.inactive-slide {
    z-index: 0;
    opacity: 0;
    pointer-events: none;
}

.btn-discover:hover {
    background-color: #fff;
    color: #000;
}

/* ===========================================
   9. CONTENT SECTIONS
   =========================================== */

/* Welcome Section & Oils Section */
.welcome-section .group:hover img,
.oils-section .group:hover img {
    filter: grayscale(0%);
}

/* Read More Links */
.read-more:hover {
    color: #fff;
    border-color: #fff;
}

/* Gradient Background */
.bg-gradient-dark {
    background: linear-gradient(to bottom, #0a0a0a, #0f0f0f);
}

/* ===========================================
   10. FEATURES GRID
   =========================================== */
.feature-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
}

.feature-card img {
    transition: transform 0.5s ease;
}

.feature-card:hover img {
    transform: scale(1.1);
}

/* ===========================================
   11. TREATMENTS SECTION
   =========================================== */
.treatment-item:hover {
    border-color: #D4AF37;
}

/* ===========================================
   12. TESTIMONIALS
   =========================================== */
.testimonials-scroll {
    scroll-behavior: smooth;
}

/* ===========================================
   13. FOOTER
   =========================================== */
.footer-logo {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.footer-logo:hover {
    filter: grayscale(0%);
}

.footer-widget a:hover {
    color: #D4AF37;
    padding-left: 0.5rem;
}

/* ===========================================
   14. WOOCOMMERCE STYLES
   =========================================== */
.woocommerce-wrapper {
    min-height: 50vh;
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.woocommerce ul.products li.product {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    transition: all 0.5s ease;
}

.woocommerce ul.products li.product:hover {
    border-color: rgba(212, 175, 55, 0.5);
}

.woocommerce ul.products li.product img {
    filter: grayscale(100%);
    transition: filter 0.7s ease;
}

.woocommerce ul.products li.product:hover img {
    filter: grayscale(0%);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 1rem 0;
}

.woocommerce ul.products li.product .price {
    color: #D4AF37;
    font-size: 1.25rem;
}

.woocommerce ul.products li.product .button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.75rem 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.woocommerce ul.products li.product .button:hover {
    background: #fff;
    color: #000;
}

/* Single Product */
.woocommerce div.product {
    color: #d6d3d1;
}

.woocommerce div.product .product_title {
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.woocommerce div.product .price {
    color: #D4AF37;
    font-size: 2rem;
}

.woocommerce div.product .woocommerce-product-details__short-description {
    color: #a8a29e;
}

.woocommerce div.product form.cart .button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 1rem 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.woocommerce div.product form.cart .button:hover {
    background: #fff;
    color: #000;
}

/* Cart */
.woocommerce-cart table.cart td {
    border-color: rgba(255, 255, 255, 0.1);
    color: #d6d3d1;
}

.woocommerce-cart .cart-collaterals {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ===========================================
   15. RESPONSIVE DESIGN
   =========================================== */

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .md-block {
        display: block;
    }

    .md-flex {
        display: flex;
    }

    .md-hidden {
        display: none;
    }

    .md-w-40 {
        width: 10rem;
    }

    .md-w-450 {
        width: 450px;
    }

    .md-w-50vw {
        width: 50vw;
    }

    .md-px-12 {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .md-px-24 {
        padding-left: 6rem;
        padding-right: 6rem;
    }

    .md-py-32 {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }

    .md-gap-10 {
        gap: 2.5rem;
    }

    .md-gap-32 {
        gap: 8rem;
    }

    .md-text-left {
        text-align: left;
    }

    .md-text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .md-text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .md-text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .md-text-5xl {
        font-size: 3rem;
        line-height: 1;
    }

    .md-text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }

    .md-text-7xl {
        font-size: 4.5rem;
        line-height: 1;
    }

    .md-text-9xl {
        font-size: 8rem;
        line-height: 1;
    }

    .md-grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .lg-w-40vw {
        width: 40vw;
    }

    .lg-col-span-5 {
        grid-column: span 5 / span 5;
    }

    .lg-col-span-7 {
        grid-column: span 7 / span 7;
    }

    .lg-grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lg-grid-cols-12 {
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }

    .lg-gap-24 {
        gap: 6rem;
    }

    .lg-order-1 {
        order: 1;
    }

    .lg-order-2 {
        order: 2;
    }

    .lg-pl-12 {
        padding-left: 3rem;
    }
}

/* Hover States (Desktop only) */
@media (hover: hover) {
    .hover-text-white:hover {
        color: #fff;
    }

    .hover-text-gold-400:hover {
        color: #D4AF37;
    }

    .hover-text-black:hover {
        color: #000;
    }

    .hover-bg-white:hover {
        background-color: #fff;
    }

    .hover-bg-gold-400:hover {
        background-color: #D4AF37;
    }

    .hover-border-white:hover {
        border-color: #fff;
    }

    .hover-border-gold-400:hover {
        border-color: #D4AF37;
    }

    .hover-border-gold-400-50:hover {
        border-color: rgba(212, 175, 55, 0.5);
    }

    .hover-brightness-100:hover {
        filter: brightness(1);
    }

    .hover-grayscale-0:hover {
        filter: grayscale(0%);
    }

    .hover-italic:hover {
        font-style: italic;
    }

    .hover-pl-2:hover {
        padding-left: 0.5rem;
    }

    .hover-h-10:hover {
        height: 2.5rem;
    }

    .hover-tracking-0_3em:hover {
        letter-spacing: 0.3em;
    }

    .hover-scale-110:hover {
        transform: scale(1.1);
    }

    .group:hover .group-hover-bg-gold-400 {
        background-color: #D4AF37;
    }

    .group:hover .group-hover-w-full {
        width: 100%;
    }

    .group:hover .group-hover-tracking-0_3em {
        letter-spacing: 0.3em;
    }

    .group:hover .group-hover-scale-110 {
        transform: scale(1.1);
    }

    .group:hover .group-hover-grayscale-0 {
        filter: grayscale(0%);
    }

    .group:hover .group-hover-translate-x-2 {
        transform: translateX(0.5rem);
    }

    .group:hover .group-hover-translate-y-2 {
        transform: translateY(0.5rem);
    }

    .group:hover .group-hover--translate-x-2 {
        transform: translateX(-0.5rem);
    }

    .group:hover .group-hover--translate-y-2 {
        transform: translateY(-0.5rem);
    }
}

/* Additional WordPress & WooCommerce Resets */
.woocommerce-breadcrumb {
    color: #a8a29e;
    margin-bottom: 2rem;
}

.woocommerce-breadcrumb a {
    color: #D4AF37;
}

.woocommerce-breadcrumb a:hover {
    color: #fff;
}

/* Ensure images fit properly */
.wp-post-image,
.attachment-post-thumbnail {
    width: 100%;
    height: auto;
}

/* Pagination */
.pagination {
    margin-top: 4rem;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.pagination a,
.pagination span {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination .current {
    background: rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
    color: #D4AF37;
}

/* Transform utilities for offcanvas */
.translate-x-4 {
    transform: translateX(1rem);
}

.translate-y-4 {
    transform: translateY(1rem);
}

.-translate-x-4 {
    transform: translateX(-1rem);
}

.-translate-y-4 {
    transform: translateY(-1rem);
}

.transform {
    transform: translateZ(0);
}

/* Close buttons */
.close-btn {
    font-size: 2.5rem;
    line-height: 1;
    font-weight: 300;
}

/* Mini cart in off-canvas */
.widget_shopping_cart {
    padding: 2rem;
}

.widget_shopping_cart .cart_list {
    list-style: none;
    padding: 0;
}

.widget_shopping_cart .cart_list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget_shopping_cart .total {
    color: #D4AF37;
    font-size: 1.25rem;
    padding: 1rem 0;
}

.widget_shopping_cart .buttons a {
    display: inline-block;
    margin: 0.5rem;
    padding: 0.75rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.widget_shopping_cart .buttons a:hover {
    background: #fff;
    color: #000;
}
