:root {
    --primary: #c5a059;
    --primary-light: #d4b882;
    --secondary: #1a1a1a;
    --text-dark: #222222;
    --text-muted: #666666;
    --white: #ffffff;
    --bg-light: #f9f9f9;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
    --font-heading: 'Playfair Display', serif;
}

/* Fix FontAwesome Icon Display */
.fa-solid,
.fas,
[class^="fa-"],
[class*=" fa-"] {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 5 Free', 'FontAwesome' !important;
    font-weight: 900 !important;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-light);
}

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--primary);
    z-index: 9999;
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body,
button,
input,
textarea,
select {
    font-family: "SF Pro Display", "SF Pro Text", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

.container-fluid {
    width: 100%;
    padding: 0;
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero-text h1,
.hero-text h1 .highlight,
.hero-text h2,
.hero-text h2 .highlight,
.cta-content-new h2 {
    font-family: 'Playfair Display', serif !important;
}

.section-title span,
.hero-text h1 span,
.hero-text h2 span,
.cta-content-new h2 span {
    font-family: 'Playfair Display', serif !important;
}

h1,
h2,
h3,
.section-title {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--white);
    border: 1px solid var(--secondary);
}

.btn-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary);
    border: 1px solid var(--secondary);
}

.btn-outline:hover {
    background-color: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--secondary);
    color: var(--white);
    border: 1px solid var(--secondary);
}

.btn-dark:hover {
    background-color: #000;
    transform: translateY(-2px);
}

.btn-light {
    background-color: var(--white);
    color: var(--secondary);
    border: 1px solid var(--white);
}

.btn-light:hover {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 12px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.sticky {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
}

.header-actions {
    justify-self: end;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

header.sticky .logo img {
    filter: none;
}

.logo span {
    display: none;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links li a {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    position: relative;
    padding-bottom: 5px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-actions a {
    font-size: 18px;
    color: var(--white);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--white);
    transition: var(--transition);
    z-index: 1001;
}

.menu-toggle.active {
    color: var(--text-dark) !important;
}

/* Sticky Header Adjustments */
header.sticky .nav-links li a,
header.sticky .header-actions a,
header.sticky .menu-toggle {
    color: var(--text-dark);
}

header.sticky .nav-links li a.active,
header.sticky .nav-links li a:hover {
    color: var(--primary);
}

/* Hero Section (New Split Design) */
.hero-split {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--secondary);
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary) 0%, rgba(26, 26, 26, 0.8) 100%);
    z-index: 1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    color: var(--white);
}

.hero-text .subtitle {
    display: block;
    font-size: 13px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 25px;
}

.hero-text h1,
.hero-text h2 {
    font-size: 84px;
    line-height: 1;
    margin-bottom: 30px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-text h1 .highlight,
.hero-text h2 .highlight {
    font-size: 96px;
    color: var(--primary);
    font-style: italic;
    font-weight: 400;
}

.hero-text p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 45px;
    max-width: 550px;
}

.hero-actions-new {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-actions-new .btn {
    width: 212px;
    justify-content: center;
}

/* Luxury Buttons */
.btn-luxury {
    background: var(--primary);
    color: var(--secondary);
    padding: 18px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    border: 1px solid var(--primary);
}

.btn-luxury:hover {
    background: var(--white);
    color: var(--secondary);
    border-color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-luxury-white {
    background: var(--white);
    color: var(--secondary);
    padding: 18px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

.btn-luxury-white:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}



.btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 18px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-outline-white:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-image-new {
    display: flex;
    justify-content: flex-end;
}

.image-box {
    position: relative;
    width: 100%;
    max-width: 550px;
}

.image-box img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 15px 15px 0px rgba(197, 160, 89, 0.1);
}

.experience-tag {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: var(--white);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
}

.experience-tag strong {
    display: block;
    font-size: 36px;
    color: var(--primary);
    line-height: 1;
}

.experience-tag span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Sections Global */
.section-title {
    font-size: 42px !important;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: 0;
}

.section-title span {
    color: var(--primary);
    font-style: italic;
    font-weight: 600;
}

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

.section-title.small-margin {
    margin-bottom: 40px;
}

.section-header {
    margin-bottom: 60px;
}

.section-header p.center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
}

.grid {
    display: grid;
    gap: 30px;
}

.grid-2 {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.no-gap {
    gap: 0;
}

/* Intro Section */
.intro-image .img-wrapper {
    position: relative;
    padding-bottom: 120%;
    overflow: hidden;
}

.intro-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.intro-image:hover img {
    transform: scale(1.05);
}

.intro-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
    letter-spacing: 0;
}

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

.stat-item h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-item p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 0;
}

/* Product Section */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: var(--white);
    padding: 15px;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.product-img {
    height: 300px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    background-color: #f9f9f9;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: var(--transition);
}

.product-overlay {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
    display: flex;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
}

.product-card:hover .product-overlay {
    bottom: 0;
    opacity: 1;
    visibility: visible;
}

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

.product-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    height: 50px;
    overflow: hidden;
    font-weight: 700;
    letter-spacing: 0;
}

.product-info .category {
    font-size: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.product-info .price {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-top: 12px;
    min-height: 42px;
    /* Dành chỗ cho giá cũ để không bị lệch hàng */
}

.product-info .price del {
    display: block;
    font-size: 13px;
    color: #b0b0b0;
    font-weight: 400;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.product-info .price ins {
    display: block;
    font-size: 20px;
    color: var(--secondary);
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
}

.product-info .price .woocommerce-Price-currencySymbol {
    font-size: 11px;
    font-weight: 400;
    margin-left: 2px;
    text-decoration: none !important;
    display: inline-block;
    vertical-align: middle;
}

/* Trường hợp giá không giảm */
.product-info .price>.woocommerce-Price-amount:only-child {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

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

/* News Section */
.news-grid {
    gap: 40px;
}

.news-card {
    background: var(--white);
    transition: var(--transition);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
}

.news-card:hover .news-img img {
    transform: scale(1.05);
}

.news-img {
    height: 350px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-info {
    padding: 30px 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    display: block;
    color: var(--primary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 500;
}

.news-info h3 {
    font-size: 26px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.news-excerpt {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
}

.read-more {
    margin-top: auto;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--primary);
    gap: 15px;
}

/* Giftset Section */
.giftsets {
    background-color: #fff;
}

.giftset-content {
    background-color: #f4f1ea;
    padding-left: 10%;
    padding-right: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.giftset-content .subtitle {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    margin-bottom: 15px;
}

.features-grid-luxury {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-item i {
    width: 45px;
    height: 45px;
    background: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.f-text strong {
    display: block;
    font-size: 14px;
    color: var(--secondary);
    margin-bottom: 3px;
    font-weight: 700;
}

.f-text span {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

.giftset-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.giftset-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.giftset-actions .btn-luxury {
    padding: 14px 30px;
    font-size: 13px;
    display: inline-flex;
    width: auto;
}

/* Partners */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    align-items: center;
}

.partner-logo {
    display: flex;
    justify-content: center;
}

.partner-logo img {
    height: 70px;
    object-fit: contain;
    transition: var(--transition);
}

.partner-logo:hover img {
    transform: scale(1.1);
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testimonial-item {
    background: var(--white);
    padding: 40px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary);
}

.stars {
    color: var(--primary);
    font-size: 14px;
}

.testimonial-item p {
    font-style: italic;
    color: var(--text-dark);
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.client-info strong {
    display: block;
    font-size: 16px;
    color: var(--secondary);
}

.client-info span {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.news-card {
    background: var(--white);
    overflow: hidden;
    transition: var(--transition);
}

.news-card:hover {
    box-shadow: var(--shadow);
}

.news-img {
    height: 250px;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-img img {
    transform: scale(1.05);
}

.news-content {
    padding: 30px;
}

.news-content .date {
    font-size: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.news-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.news-card:hover h3 {
    color: var(--primary);
}

.news-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.read-more {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
}

.read-more:hover {
    color: var(--primary);
}

/* Corporate CTA Enhanced */
.container-narrow {
    max-width: 1000px;
}

.cta-box-new {
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?q=80&w=2342');
    background-size: cover;
    background-position: center 25%;
    border-radius: 30px;
    overflow: hidden;
    padding: 120px 80px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.cta-overlay-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.7) 60%,
            transparent 100%);
    z-index: 1;
}

.cta-content-new {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: flex-start;
}

.cta-company-info {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.cta-company-info h4 {
    color: var(--primary);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-company-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cta-company-info ul li {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-company-info ul li i {
    color: var(--primary);
    width: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.cta-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-action-box {
    text-align: center;
}

.cta-action-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-content-new {
        max-width: 100%;
    }
}

.cta-subtitle {
    display: block;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-content-new h2 {
    font-size: 44px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.cta-content-new h2 span {
    color: var(--primary);
    font-style: italic;
}

.cta-content-new p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 520px;
}

.cta-features-minimal {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-features-minimal span {
    font-weight: 500;
}

.cta-features-minimal i {
    color: var(--primary);
    margin-right: 5px;
}

.cta-actions-new {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

.btn-phone-cta {
    font-weight: 700;
    color: var(--white);
    font-size: 20px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-phone-cta i {
    color: var(--primary);
    font-size: 22px;
}

@media (max-width: 768px) {
    .cta-box-new {
        padding: 60px 30px;
    }

    .cta-overlay-inner {
        width: 100%;
        background: rgba(0, 0, 0, 0.7);
    }

    .cta-content-new {
        text-align: center;
        max-width: 100%;
    }

    .cta-features-minimal {
        justify-content: center;
    }

    .cta-company-info ul li {
        text-align: left;
    }

    .cta-actions-new {
        flex-direction: column;
        width: 100%;
    }

    .cta-content-new h2 {
        font-size: 32px;
    }
}

/* Footer */
footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-col.about p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    line-height: 1.6;
}

.business-info {
    font-size: 12px !important;
    opacity: 0.6;
    margin-top: 5px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--white);
}

.social-links a:hover {
    background-color: var(--white);
    color: var(--secondary);
}

.contact-info li {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.contact-info li i {
    color: var(--primary);
    margin-top: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

/* Reveal Animations */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: transform, opacity;
}

.reveal-left {
    transform: translateX(-30px);
}

.reveal-right {
    transform: translateX(30px);
}

@media (max-width: 768px) {

    .reveal-left,
    .reveal-right {
        transform: translateY(20px) !important;
        transition-duration: 0.6s;
    }
}

.revealed {
    opacity: 1;
    transform: translate(0, 0) !important;
}

/* Press Section */
.press-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

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

.press-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.press-logo-ld {
    height: 25px;
    width: auto;
}

.press-logo-outlet {
    height: 35px;
    max-width: 150px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.7;
    transition: var(--transition);
}

.press-card:hover .press-logo-outlet {
    filter: none;
    opacity: 1;
}

.press-header .x {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-muted);
}

.press-img {
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
}

.press-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition);
}

.press-card:hover .press-img img {
    transform: scale(1.05);
}

.press-content h3 {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--secondary);
    min-height: 45px;
}

.btn-press {
    display: inline-block;
    background-color: #333;
    color: var(--white);
    padding: 10px 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-press:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {

    .hero-text h1,
    .hero-text h2 {
        font-size: 72px;
    }

    .hero-text h1 .highlight,
    .hero-text h2 .highlight {
        font-size: 80px;
    }

    .hero-container {
        padding: 0 30px;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        display: flex;
        /* Always flex but hidden via right */
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li a {
        color: var(--text-dark) !important;
        font-size: 18px;
    }

    .menu-toggle {
        display: block;
    }

    nav {
        grid-template-columns: auto 1fr auto;
    }

    .logo {
        grid-column: 1;
    }

    .menu-toggle {
        display: block;
    }

    .header-actions {
        display: flex;
        grid-column: 3;
        justify-self: end;
        gap: 15px;
    }

    .search-btn {
        display: none;
        /* Hide search only to save space, keeping cart and menu */
    }

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

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

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

    .hero-split {
        padding-top: 120px;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1,
    .hero-text h2 {
        font-size: 48px;
    }

    .hero-text h1 .highlight,
    .hero-text h2 .highlight {
        font-size: 56px;
    }

    .hero-text h1 .highlight::after {
        bottom: 0;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions-new {
        justify-content: space-between;
        flex-direction: row;
        gap: 10px;
        flex-wrap: wrap;
    }

    .hero-actions-new .btn {
        width: 172px;
        min-width: 140px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .hero-image-new {
        justify-content: center;
    }

    .image-box img {
        height: 400px;
    }

    .experience-tag {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }

    .section-title {
        font-size: 36px !important;
    }

    .section-title span {
        display: block;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .giftset-content {
        padding: 60px 20px;
    }

    .features-grid-luxury,
    .testimonial-grid,
    .news-grid,
    .press-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .product-overlay {
        display: none !important;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .cta-box-new {
        padding: 60px 30px;
    }
}

@media (max-width: 480px) {

    .hero-text h1,
    .hero-text h2 {
        font-size: 40px;
    }

    .hero-text h1 .highlight,
    .hero-text h2 .highlight {
        font-size: 46px;
    }

    .hero-text h1 .highlight::after {
        bottom: -2px;
        height: 3px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        text-align: center;
        padding: 25px 15px;
        background: #fdfdfd;
        border: 1px solid #f0f0f0;
        border-radius: 12px;
        margin-top: 30px;
    }

    .stat-item h3 {
        font-size: 22px;
        margin-bottom: 4px;
    }

    .stat-item p {
        font-size: 9px;
        letter-spacing: 0.5px;
        color: var(--text-muted);
    }

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

    .product-info h3 {
        font-size: 14px;
        height: 40px;
    }

    .product-info .price {
        font-size: 14px;
    }

    .product-card {
        padding: 10px;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .btn {
        width: auto;
        text-align: center;
    }
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    border: none;
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

.highlight {
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(197, 160, 89, 0.3);
    z-index: -1;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.btn-luxury {
    overflow: hidden;
    position: relative;
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-luxury:hover::before {
    width: 300%;
    height: 300%;
}

/* WooCommerce / Shop Extended Styles */
.shop-categories-filter {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.cat-list li a {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    position: relative;
    padding: 10px 0;
    display: block;
}

.cat-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.cat-list li a:hover,
.cat-list li a.active {
    color: var(--secondary);
}

.cat-list li a.active::after,
.cat-list li a:hover::after {
    width: 100%;
}

.shop-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.shop-filters-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.woocommerce-result-count {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
    white-space: nowrap;
}

.shop-top-bar select,
.category-dropdown {
    appearance: none;
    background-color: var(--white);
    border: 1px solid #ddd;
    padding: 10px 15px;
    outline: none;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 15px;
    padding-right: 35px !important;
    transition: var(--transition);
}

.shop-top-bar select:hover,
.category-dropdown:hover {
    border-color: var(--primary);
}

.filter-select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.filter-select-wrapper i {
    position: absolute;
    left: 12px;
    z-index: 2;
    color: var(--primary);
    font-size: 14px;
    pointer-events: none;
}

.filter-select-wrapper select {
    padding-left: 35px !important;
}

@media (max-width: 992px) {
    .shop-top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .shop-filters-left,
    .shop-filters-right {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .shop-top-bar {
        flex-direction: row;
        flex-wrap: wrap;
        padding-bottom: 15px;
        margin-bottom: 30px;
        gap: 10px 0;
    }

    .woocommerce-result-count {
        width: 100%;
        margin-bottom: 15px;
        font-size: 12px;
        text-align: center;
        background: #f9f9f9;
        padding: 8px;
        order: -1;
    }

    .shop-filters-left,
    .shop-filters-right {
        width: 50%;
        display: flex;
        justify-content: center;
        padding: 0 5px;
    }

    .filter-select-wrapper {
        width: 100%;
    }

    .filter-select-wrapper select {
        width: 100%;
        font-size: 13px;
        padding: 12px 10px 12px 35px !important;
        border-radius: 4px;
        background-position: right 8px center;
    }

    .filter-select-wrapper i {
        font-size: 13px;
        left: 10px;
    }
}

.woocommerce-breadcrumb {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    display: block;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.woocommerce-breadcrumb a {
    color: var(--white);
    transition: var(--transition);
}

.woocommerce-breadcrumb a:hover {
    color: var(--primary);
}

.woocommerce-breadcrumb .current {
    color: var(--primary);
    font-weight: 600;
}

.product-header-title {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 48px;
    letter-spacing: -1px;
}

.woocommerce-pagination {
    margin-top: 60px;
    text-align: center;
    display: block;
}

.woocommerce-pagination .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0;
    list-style: none;
}

.woocommerce-pagination .page-numbers li a,
.woocommerce-pagination .page-numbers li span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.woocommerce-pagination .page-numbers li span.current {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.woocommerce-pagination .page-numbers li a:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

/* Single Product Styles */
.product-gallery-thumbnails img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    transition: var(--transition);
}

.product-gallery-thumbnails .thumb:hover {
    border-color: var(--primary);
}

.single_add_to_cart_button {
    height: 55px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border: none !important;
}

.content-section img {
    max-width: 500px;
    width: 100%;
    margin: 30px auto !important;
    display: block;
    height: auto;
}

.woocommerce-tabs .tabs li {
    transition: var(--transition);
    position: relative;
    list-style: none;
    /* Ensure no bullets */
}

.woocommerce-tabs .tabs li:not(.active):hover {
    color: var(--secondary);
}

/* Responsive Single Product */
@media (max-width: 992px) {
    .single-product .product {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .woocommerce-product-gallery {
        position: static !important;
    }
}

@media (max-width: 480px) {
    .single-product {
        padding-top: 0 !important;
    }

    .single-product .page-header {
        padding-top: 120px !important;
        padding-bottom: 40px !important;
    }

    .product-header-title {
        font-size: 28px !important;
        margin-bottom: 10px !important;
    }

    .woocommerce-breadcrumb {
        font-size: 10px !important;
        letter-spacing: 1px !important;
    }

    .product_title {
        font-size: 32px !important;
    }

    .woocommerce-tabs .tabs {
        display: flex;
        flex-direction: row;
        gap: 20px !important;
        align-items: center !important;
        padding-left: 0;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
    }

    .woocommerce-tabs .tabs::-webkit-scrollbar {
        display: none;
    }

    .woocommerce-tabs .tabs li {
        width: auto;
        padding-bottom: 15px !important;
        flex-shrink: 0;
    }

    .single_add_to_cart_button {
        font-size: 13px !important;
        padding: 14px 15px !important;
        white-space: nowrap;
    }

    /* Store Locator Mobile */
    .store-interactive-grid {
        grid-template-columns: 1fr !important;
        padding: 20px !important;
        gap: 20px !important;
    }

    .store-map-preview {
        display: none !important;
    }

    .store-address-list {
        padding-right: 0 !important;
    }

    .store-item {
        border-left: 2px solid transparent !important;
        padding: 15px !important;
    }

    .store-item.active {
        border-left: 2px solid var(--primary) !important;
    }
}