:root {
    --primary-black: #1a1a1a;
    --pure-white: #ffffff;
    --cream: #f8f6f3;
    --gold: #c9a959;
    --soft-gold: #e8dcc8;
    --dark-gray: #4a4a4a;
    --medium-gray: #6a6a6a;
    --light-gray: #9a9a9a;
    --soft-bg: #f5f4f2;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 5px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 50px rgba(0,0,0,0.15);
    --shadow-gold: 0 5px 30px rgba(201,169,89,0.3);
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s ease;

    --bs-sm: 576px;
    --bs-md: 768px;
    --bs-lg: 992px;
    --bs-xl: 1200px;
    --bs-xxl: 1400px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    background: var(--pure-white);
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

::selection {
    background: var(--gold);
    color: var(--pure-white);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--soft-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b8943d;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-black);
    color: var(--pure-white);
}

.btn-primary:hover {
    background: var(--gold);
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
}

.btn-secondary:hover {
    background: var(--pure-white);
    color: var(--primary-black);
}

.btn-outline {
    background: transparent;
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
}

.btn-outline:hover {
    background: var(--primary-black);
    color: var(--pure-white);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #d4b76a);
    color: var(--primary-black);
    font-weight: 600;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 35px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--gold), #d4b76a);
    color: var(--primary-black);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    margin-top: 30px;
}

.btn-view-more:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    color: var(--primary-black);
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 50px;
    background: var(--primary-black);
    color: var(--pure-white);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 40px;
}

.btn-load-more:hover {
    background: var(--gold);
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-load-more:disabled {
    background: var(--light-gray);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-load-more.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-load-more .fa-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.load-more-container {
    text-align: center;
    width: 100%;
    display: none;
}

.load-more-container.visible {
    display: block;
}

.products-count {
    text-align: center;
    margin-top: 20px;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--medium-gray);
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-text {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.5em;
    display: block;
}

.loader-text:first-child {
    color: var(--pure-white);
}

.loader-text.outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--gold);
}

.sync-text {
    display: block;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

#preloader.loaded .sync-text {
    display: none;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 16px 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--pure-white);
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    z-index: 1001;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-logo .logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.navbar.scrolled .nav-logo {
    color: var(--primary-black);
}

.navbar.scrolled .nav-logo .logo-img {
    filter: brightness(0);
}

.nav-logo .logo-icon {
    font-size: 1.6rem;
    color: var(--gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    color: var(--pure-white);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-link {
    color: var(--primary-black);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-search-container {
    display: flex;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    z-index: 1001;
    height: 42px;
}

.navbar.scrolled .nav-search-container {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
    height: 38px;
}

.navbar-search-input {
    border: none;
    padding: 0 0 0 20px;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
    width: 120px;
    background: transparent;
    color: var(--pure-white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .navbar-search-input {
    color: var(--primary-black);
}

.navbar-search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.navbar.scrolled .navbar-search-input::placeholder {
    color: var(--light-gray);
}

.navbar-search-input:focus {
    width: 180px;
    background: rgba(255, 255, 255, 0.15);
}

.navbar.scrolled .navbar-search-input:focus {
    background: rgba(255, 255, 255, 0.6);
}

.navbar-search-btn {
    background: linear-gradient(135deg, var(--gold) 0%, #d4b76a 100%);
    border: none;
    padding: 0 20px;
    cursor: pointer;
    color: var(--primary-black);
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-search-btn:hover {
    background: linear-gradient(135deg, #d4b76a 0%, var(--gold) 100%);
    box-shadow: 0 4px 15px rgba(201, 169, 89, 0.4);
}

.navbar-search-btn:active {
    transform: scale(0.96);
}

.mobile-search-btn {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    z-index: 1001;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background: var(--pure-white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
    background: var(--primary-black);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay {
    position: fixed;
    top: 75px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px) scale(0.95);
    width: 90%;
    max-width: 500px;
    background: var(--pure-white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(201, 169, 89, 0.1);
    z-index: 2000;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.search-container {
    width: 100%;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    font-size: 1.05rem;
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
    border: 2px solid #eee;
    border-radius: 14px;
    color: var(--primary-black);
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--gold);
    background: var(--pure-white);
    box-shadow: 0 8px 30px rgba(201, 169, 89, 0.2);
}

.search-input::placeholder {
    color: var(--medium-gray);
}

.search-close {
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    color: #888;
    background: #ddd;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.search-close:hover {
    color: #fff;
    background: #ff4757;
    transform: translateY(-50%) rotate(90deg);
}

.search-close svg {
    width: 16px;
    height: 16px;
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 10;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26,26,26,0.5) 0%, rgba(26,26,26,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 70px 20px 35px;
    max-width: 800px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    overflow: hidden;
}

.hero-title .title-line {
    display: block;
    overflow: hidden;
}

.hero-title .title-word {
    display: inline-block;
    animation: titleReveal 1.2s ease-out forwards;
}

.hero-title .title-line:first-child .title-word {
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-title .title-line:last-child .title-word {
    animation-delay: 0.8s;
    opacity: 0;
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.9);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold), #e8dcc8, var(--gold));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite, textGlow 2s ease-in-out infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes textGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.hero-tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 15px;
}

.hero-tagline i {
    margin-right: 8px;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-location {
    color: var(--gold);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transition: var(--transition-fast);
}

.slider-dot.active {
    background: var(--gold);
}

.features-bar {
    background: var(--soft-bg);
    padding: 40px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--pure-white);
    border-radius: 16px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(201, 169, 89, 0.1);
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold), #d4b76a);
    border-radius: 14px;
    color: var(--primary-black);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 0.8rem;
    color: var(--medium-gray);
}

.categories {
    padding: 60px 0;
    background: var(--pure-white);
}

.categories-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.categories-grid .category-card {
    flex: 0 0 calc(100% - 24px);
    max-width: 100%;
}

@media (min-width: 576px) {
    .categories-grid .category-card {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }
}

@media (min-width: 768px) {
    .categories-grid .category-card {
        flex: 0 0 calc(33.333% - 16px);
        max-width: calc(33.333% - 16px);
    }
}

@media (min-width: 992px) {
    .categories-grid .category-card {
        flex: 0 0 calc(25% - 18px);
        max-width: 320px;
    }
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.08);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26,26,26,0.95) 0%, rgba(26,26,26,0.2) 60%, transparent 100%);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    color: var(--pure-white);
}

.category-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gold);
    color: var(--primary-black);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 12px;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.category-count {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 12px;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition-fast);
}

.category-card:hover .category-link {
    opacity: 1;
    transform: translateY(0);
}

.page-header {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.7));
    z-index: -1;
}

.page-header-content {
    text-align: center;
    color: var(--pure-white);
    padding: 20px;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--soft-gold);
    margin-bottom: 25px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--soft-gold);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--pure-white);
}

.breadcrumb-separator {
    color: var(--light-gray);
    font-size: 0.8rem;
}

.breadcrumb-current {
    color: var(--pure-white);
    font-weight: 500;
}

@media (max-width: 768px) {
    .page-header {
        height: 280px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
}

.showcase {
    padding: 60px 0;
    background: var(--cream);
    position: relative;
    z-index: 1;
}

.products-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.filter-btn {
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-gray);
    background: var(--pure-white);
    border-radius: 50px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-black);
    color: var(--pure-white);
    border-color: var(--primary-black);
}

.price-slider-container {
    max-width: 600px;
    margin: 0 auto 25px;
}

.price-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.price-slider-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.price-slider-values {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold);
}

.price-slider-track {
    position: relative;
    height: 60px;
    margin: 0 12px;
}

.slider-track {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 6px;
    background: #e8e8e8;
    border-radius: 3px;
}

.slider-range {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 6px;
    background: linear-gradient(90deg, var(--gold) 0%, #d4a84b 100%);
    border-radius: 3px;
    pointer-events: none;
}

.slider-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: var(--pure-white);
    border: 4px solid var(--gold);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: grab;
    z-index: 2;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.slider-thumb:hover {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 4px 15px rgba(201,169,89,0.4);
}

.slider-thumb:active {
    cursor: grabbing;
}

.slider-thumb .thumb-value {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 8px;
    background: var(--primary-black);
    color: var(--pure-white);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

.slider-thumb:hover .thumb-value,
.slider-thumb.active .thumb-value {
    opacity: 1;
    visibility: visible;
}

.slider-thumb .thumb-value::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--primary-black);
}

.thumb-min {
    z-index: 3;
}

.thumb-max {
    z-index: 2;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    min-height: 400px;
    position: relative;
}

@media (max-width: 1400px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

@media (max-width: 400px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
}

@media (max-width: 350px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5px;
    }
}

.product-card {
    background: var(--pure-white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), #d4b76a);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 5;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}

.product-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.product-title a:hover {
    color: var(--gold);
}

.product-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge {
    padding: 6px 14px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: linear-gradient(135deg, var(--soft-bg), #f0efed);
}

.image-flip {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-flip img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.image-front {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

.image-back {
    opacity: 0;
    z-index: 2;
    transform: scale(1.08);
}

.product-card:hover .image-front {
    opacity: 0;
    transform: scale(1.08);
}

.product-card:hover .image-back {
    opacity: 1;
    transform: scale(1);
}

@media (hover: none) and (pointer: coarse) {
    .image-front {
        opacity: 1;
    }
    .image-back {
        opacity: 0;
    }
}

.product-image-single {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 16px;
    text-align: left;
    background: var(--pure-white);
}

.product-category {
    font-size: 11px;
    font-weight: 500;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.brand-tag {
    color: #c9a96e;
    font-size: 9px;
    margin: 0 4px;
    vertical-align: middle;
}

.brand-name {
    color: #c9a96e;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.product-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 4px;
    letter-spacing: 0.3px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-price-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.price-current {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.5px;
}

.price-old {
    font-size: 13px;
    font-weight: 400;
    color: #aaa;
    text-decoration: line-through;
}

.discount-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-black);
    background: var(--gold);
    padding: 3px 10px;
    border-radius: 20px;
}

.product-btn {
    white-space: nowrap;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: var(--pure-white);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.product-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 89, 0.3), transparent);
    transition: left 0.6s ease;
}

.product-btn:hover {
    background: linear-gradient(135deg, #c9a959 0%, #d4b76a 50%, #c9a959 100%);
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 89, 0.4);
}

.product-btn:hover::before {
    left: 100%;
}

.product-btn:active {
    transform: translateY(-1px);
}

.product-btn i {
    font-size: 18px;
    color: #c9a959;
    transition: all 0.3s ease;
}

.product-btn:hover i {
    color: #1a1a1a;
    transform: scale(1.1);
}

.whatsapp-btn.product-btn {
    width: 100%;
    position: relative;
    z-index: 15;
}



.offers {
    position: relative;
}

.offers-banner {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.offers-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    transition: opacity 0.6s ease;
}

.offers-bg.fade-out {
    opacity: 0;
}

.offers-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.offers-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.663), rgba(26,26,26,0.85));
    z-index: 2;
}

.offers-container {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    width: 100%;
    padding: 30px 25px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(201, 169, 89, 0.3);
    color: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    opacity: 1;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.offers-container.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

.offers-container.fade-in {
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.offers-badge {
    display: inline-flex !important;
    align-items: center;
    position: relative;
    z-index: 3;
    padding: 12px 30px;
    background: rgba(201,169,89,0.2) !important;
    border: 1px solid var(--gold) !important;
    border-radius: 50px;
    color: var(--gold) !important;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    visibility: visible !important;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.offers-container.fade-in .offers-badge {
    opacity: 1;
    transform: translateY(0);
}

.countdown-note {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    margin-bottom: 15px;
    font-style: italic;
    visibility: visible !important;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
}

.offers-container.fade-in .countdown-note {
    opacity: 1;
    transform: translateY(0);
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease 0.4s, transform 0.4s ease 0.4s;
}

.offers-container.fade-in .countdown {
    opacity: 1;
    transform: translateY(0);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.countdown-value {
    width: 65px;
    height: 65px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
    backdrop-filter: blur(10px);
}

.countdown-label {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-separator {
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 700;
    margin-top: 18px;
    opacity: 0.8;
}

.offers-container .btn {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease 0.5s, transform 0.4s ease 0.5s, box-shadow 0.3s ease;
}

.offers-container.fade-in .btn {
    opacity: 1;
    transform: translateY(0);
}

.offers-container .btn:hover {
    box-shadow: 0 8px 25px rgba(201, 169, 89, 0.4);
    transform: translateY(-2px);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 89, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--pure-white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-arrow:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 100;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.15);
}

.carousel-dot.active {
    background: var(--gold);
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 15px rgba(201, 169, 89, 0.5),
                0 0 30px rgba(201, 169, 89, 0.3);
}

.swipe-hint {
    display: none;
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    white-space: nowrap;
    animation: swipeHint 2s ease-in-out infinite;
    transition: opacity 0.3s ease;
}

.swipe-hint i {
    margin: 0 5px;
    animation: swipeArrow 1.5s ease-in-out infinite;
}

@keyframes swipeHint {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

@keyframes swipeArrow {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

@media (max-width: 576px) {
    .swipe-hint {
        display: flex;
        align-items: center;
    }
}

@media (max-width: 992px) {
    .offers-banner {
        min-height: 350px;
        padding: 40px 15px;
    }
    
    .offers-container {
        padding: 25px 20px;
    }
    
    .countdown-value {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .offers-banner {
        min-height: 320px;
        padding: 35px 12px;
    }
    
    .offers-container {
        padding: 20px 15px;
        border-radius: 16px;
    }
    
    .offers-badge {
        padding: 10px 20px;
        font-size: 0.7rem;
    }
    
    .countdown {
        gap: 10px;
    }
    
    .countdown-value {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .countdown-separator {
        font-size: 1.3rem;
        margin-top: 12px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .offers-banner {
        min-height: 280px;
        padding: 25px 10px;
    }
    
    .offers-container {
        padding: 15px 12px;
        border-radius: 14px;
    }
    
    .offers-badge {
        padding: 8px 16px;
        font-size: 0.6rem;
    }
    
    .countdown {
        gap: 6px;
    }
    
    .countdown-item {
        min-width: 45px;
    }
    
    .countdown-value {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        border-radius: 8px;
    }
    
    .countdown-label {
        font-size: 0.5rem;
    }
    
    .countdown-separator {
        font-size: 1.1rem;
        margin-top: 10px;
    }
    
    .carousel-arrow {
        display: none;
    }
    
    .carousel-dots {
        bottom: 12px;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
    
    .swipe-hint {
        display: flex;
    }
}

@media (max-width: 400px) {
    .offers-banner {
        min-height: 250px;
        padding: 20px 8px;
    }
    
    .offers-container {
        padding: 12px 10px;
        border-radius: 12px;
    }
    
    .offers-badge {
        padding: 6px 12px;
        font-size: 0.5rem;
    }
    
    .countdown {
        gap: 3px;
    }
    
    .countdown-item {
        min-width: 38px;
    }
    
    .countdown-value {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
        border-radius: 6px;
    }
    
    .countdown-separator {
        font-size: 0.9rem;
        margin-top: 7px;
    }
}

.about {
    padding: 40px 0;
    background: var(--pure-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-images {
    position: relative;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(80px) scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.about-image-main {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-main img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.about-image-secondary {
    position: absolute;
    bottom: -35px;
    right: -35px;
    width: 50%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.about-image-secondary img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 15px;
}

.about-experience {
    position: absolute;
    bottom: 15px;
    left: -20px;
    background: var(--gold);
    padding: 15px 22px;
    border-radius: 12px;
    text-align: center;
}

.exp-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-black);
    display: block;
}

.exp-text {
    font-size: 0.65rem;
    color: var(--primary-black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    padding-left: 30px;
}

.about-lead {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-black);
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-text {
    font-size: 0.95rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
}

.about-content .btn {
    margin-top: 20px;
    margin-bottom: 10px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-feature .feature-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--soft-bg);
    border-radius: 10px;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 3px;
}

.about-feature p {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.testimonials {
    padding: 60px 0;
    background: var(--cream);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 300px;
    background: var(--pure-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
    opacity: 0.8;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-rating {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
}

.author-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-black);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    width: 48px;
    height: 48px;
    background: var(--pure-white);
    border: 2px solid var(--primary-black);
    border-radius: 50%;
    color: var(--primary-black);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--primary-black);
    color: var(--pure-white);
}

.contact {
    position: relative;
}

.contact-map-full {
    width: 100%;
    height: 350px;
    margin-top: -1px;
}

.contact-map-full iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.contact-content {
    background: #f8f8f8;
    padding: 50px 20px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background: var(--pure-white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-black);
    margin: 0 0 12px 0;
    display: block;
    text-align: center;
}

.contact-header .section-tag {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
    text-align: center;
}

.contact-header .contact-text {
    font-size: 1.05rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 25px auto 0;
    line-height: 1.6;
    text-align: center;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-info {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    padding: 45px 50px;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.contact-info:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.2);
}

.contact-form-wrapper {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    padding: 40px 45px;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.contact-form-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(212, 175, 55, 0.2);
}

.contact-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-socials .social-link {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-black);
    color: var(--pure-white);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.contact-socials .social-link:hover {
    background: var(--gold);
    color: var(--primary-black);
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.contact-info .section-header {
    margin-top: 10px;
}

.contact-text {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 12px;
    line-height: 1.5;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-bottom: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 14px;
    background: transparent;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover {
    padding-left: 22px;
    padding-right: 22px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
    transform: translateX(5px);
}

.contact-item:hover .contact-icon {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45);
}

.contact-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border-radius: 50%;
    color: var(--primary-black);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 5px;
}

.contact-text p {
    font-size: 0.95rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 5px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 500;
}

.map-link:hover {
    color: var(--primary-black);
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-black);
    text-align: center;
    margin: 0 auto 40px auto;
    padding-bottom: 20px;
    width: 100%;
    display: block;
}

.form-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.submit-btn {
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-black) 0%, #2a2a2a 100%);
    color: var(--pure-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn i {
    font-size: 1.2rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: var(--gold);
    color: var(--primary-black);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    position: relative;
    margin-bottom: 24px;
    margin-top: 20px;
    z-index: 1;
}

.contact-form {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: visible;
}

.contact-form h3 {
    position: relative;
    z-index: 2;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: #f8f8f8;
    border: 2px solid transparent;
    border-radius: 14px;
    resize: vertical;
    color: var(--primary-black);
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:hover,
.form-group textarea:hover {
    background: #f0f0f0;
    border-color: rgba(212, 175, 55, 0.3);
}

.form-group input {
    padding-right: 45px;
}

.form-group textarea {
    min-height: 120px;
}

.form-group label {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
    background: #f8f8f8;
    padding: 0 6px;
}

.form-group textarea ~ label {
    top: 20px;
    transform: none;
}

.form-group input:focus,
.form-group textarea:focus {
    background: #fff;
    border-color: var(--gold);
    box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.15);
}

.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: -8px;
    font-size: 0.7rem;
    color: var(--gold);
    font-weight: 600;
    background: #fff;
    border-radius: 4px;
}



.footer {
    background: var(--primary-black);
    color: var(--pure-white);
}

.footer-top {
    padding: 40px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--pure-white);
    margin-bottom: 15px;
}

.footer-logo .logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo .logo-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--pure-white);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-contact li i {
    color: var(--gold);
    width: 18px;
    text-align: center;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px) scale(0.8);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.whatsapp-float.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.whatsapp-float a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    color: var(--pure-white);
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: var(--primary-black);
    color: var(--pure-white);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: var(--primary-black);
}

.whatsapp-float a:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 35px rgba(37, 211, 102, 0.7);
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-black);
    border-radius: 50%;
    color: var(--pure-white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-fast);
    z-index: 999;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--primary-black);
}

@media (max-width: 1400px) {
    .container {
        max-width: 1200px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .category-card {
        height: 300px;
    }
    
    .product-title {
        font-size: 1rem;
    }
    
    .price-current {
        font-size: 1.1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image-main img {
        height: 400px;
    }
    
    .about-image-secondary {
        right: -20px;
        bottom: -30px;
    }
    
    .about-image-secondary img {
        height: 150px;
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
        padding: 28px;
    }
    
    .offers-banner {
        min-height: 500px;
    }
    
    .offers-carousel {
        min-height: 500px;
    }
    
    .offers-slides {
        min-height: 500px;
    }
    
    .offer-slide {
        min-height: 500px;
    }
    
    .offer-slide.active {
        min-height: 500px;
    }
    
    .offers-title {
        max-width: 750px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .category-card {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .form-submit {
        padding: 0 5px;
    }
    
    .submit-btn {
        padding: 15px 25px;
        font-size: 0.9rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .category-card {
        height: 260px;
    }
    
    .category-content {
        padding: 16px;
    }
    
    .category-title {
        font-size: 1.1rem;
    }
    
    .feature-item {
        padding: 14px;
    }
    
    .feature-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    .btn-view-more,
    .btn-load-more {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
    
    .price-slider-container {
        margin: 0 20px 20px;
    }
    
    .price-slider-header {
        margin-bottom: 18px;
    }
    
    .price-slider-label {
        font-size: 0.85rem;
    }
    
    .price-slider-values {
        font-size: 0.9rem;
    }
    
    .price-slider-track {
        margin: 0 10px;
        height: 55px;
    }
    
    .slider-thumb {
        width: 24px;
        height: 24px;
        border-width: 3px;
    }
    
    .slider-thumb .thumb-value {
        font-size: 0.7rem;
        padding: 4px 10px;
        margin-bottom: 8px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 18px 15px;
        border-radius: 14px;
    }
    
    .contact-header {
        margin-bottom: 20px;
    }
    
    .contact-header .section-title {
        font-size: 1.3rem;
    }
    
    .contact-header .section-tag {
        font-size: 0.65rem;
    }
    
    .contact-header .contact-text {
        font-size: 0.85rem;
    }
    
    .contact-item {
        padding: 10px;
        gap: 10px;
    }
    
    .contact-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .contact-text h4 {
        font-size: 0.9rem;
    }
    
    .contact-text p {
        font-size: 0.8rem;
    }
    
    .map-link {
        font-size: 0.7rem;
    }
    
    .contact-form h3 {
        font-size: 1.1rem;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .form-group {
        margin-bottom: 14px;
        margin-top: 14px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 8px;
        font-size: 0.8rem;
    }
    
    .form-group label {
        font-size: 0.75rem;
    }
    
    .form-submit {
        padding: 0 10px;
    }
    
    .submit-btn {
        padding: 14px 20px;
        font-size: 0.85rem;
        gap: 8px;
        border-radius: 10px;
    }
    
    .submit-btn i {
        font-size: 1rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .category-card {
        height: 220px;
    }
}

@media (max-width: 1024px) {
    .nav-search-container {
        display: none;
    }
    
    .mobile-search-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        height: 100dvh;
        background: var(--primary-black);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 100px 30px 40px;
        gap: 8px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0,0,0,0.4);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu .nav-link {
        font-size: 1.3rem;
        color: var(--pure-white);
        padding: 14px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-menu .nav-link:hover {
        color: var(--gold);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-actions {
        z-index: 1001;
    }
    
    .contact-container {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .contact-cards {
        gap: 30px;
    }
    
    .contact-header .section-title {
        font-size: 1.5rem;
    }
    
    .contact-header .contact-text {
        font-size: 0.95rem;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 25px 20px;
        border-radius: 18px;
    }
    
    .contact-header {
        margin-bottom: 25px;
    }
    
    .contact-header .section-title {
        font-size: 1.5rem;
    }
    
    .contact-header .section-tag {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
    
    .contact-header .contact-text {
        font-size: 0.95rem;
        margin-top: 18px;
    }
    
    .contact-map-full {
        height: 280px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .contact-content {
        padding: 30px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-top {
        padding: 50px 0 30px;
    }
    
    .footer-logo {
        font-size: 1.3rem;
        justify-content: center;
    }
    
    .footer-desc {
        text-align: center;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .footer-links h4 {
        margin-bottom: 15px;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
    
    .footer-contact {
        display: inline-block;
        text-align: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .back-to-top {
        left: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top i {
        font-size: 1rem;
    }
    
    .price-slider-container {
        margin: 0 auto 20px;
    }
    
    .price-slider-header {
        margin-bottom: 18px;
    }
    
    .price-slider-label {
        font-size: 0.85rem;
    }
    
    .price-slider-values {
        font-size: 0.9rem;
    }
    
    .price-slider-track {
        margin: 0 10px;
        height: 55px;
    }
    
    .slider-thumb {
        width: 24px;
        height: 24px;
        border-width: 3px;
    }
    
    .slider-thumb .thumb-value {
        font-size: 0.7rem;
        padding: 4px 10px;
        margin-bottom: 8px;
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-black);
    border-radius: 50%;
    color: var(--pure-white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-fast);
    z-index: 999;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--primary-black);
}

@media (max-width: 1400px) {
    .container {
        max-width: 1200px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .category-card {
        height: 300px;
    }
    
    .product-title {
        font-size: 1rem;
    }
    
    .price-current {
        font-size: 1.1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image-main img {
        height: 400px;
    }
    
    .about-image-secondary {
        right: -20px;
        bottom: -30px;
    }
    
    .about-image-secondary img {
        height: 150px;
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
        padding: 28px;
    }
    
    .offers-banner {
        min-height: 500px;
    }
    
    .offers-carousel {
        min-height: 500px;
    }
    
    .offers-slides {
        min-height: 500px;
    }
    
    .offer-slide {
        min-height: 500px;
    }
    
    .offer-slide.active {
        min-height: 500px;
    }
    
    .offers-title {
        max-width: 750px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .category-card {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .form-submit {
        padding: 0 5px;
    }
    
    .submit-btn {
        padding: 15px 25px;
        font-size: 0.9rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .category-card {
        height: 260px;
    }
    
    .category-content {
        padding: 16px;
    }
    
    .category-title {
        font-size: 1.1rem;
    }
    
    .feature-item {
        padding: 14px;
    }
    
    .feature-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    .btn-view-more,
    .btn-load-more {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
    
    .price-slider-container {
        margin: 0 20px 20px;
    }
    
    .price-slider-header {
        margin-bottom: 18px;
    }
    
    .price-slider-label {
        font-size: 0.85rem;
    }
    
    .price-slider-values {
        font-size: 0.9rem;
    }
    
    .price-slider-track {
        margin: 0 10px;
        height: 55px;
    }
    
    .slider-thumb {
        width: 24px;
        height: 24px;
        border-width: 3px;
    }
    
    .slider-thumb .thumb-value {
        font-size: 0.7rem;
        padding: 4px 10px;
        margin-bottom: 8px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 18px 15px;
        border-radius: 14px;
    }
    
    .contact-header {
        margin-bottom: 20px;
    }
    
    .contact-header .section-title {
        font-size: 1.3rem;
    }
    
    .contact-header .section-tag {
        font-size: 0.65rem;
    }
    
    .contact-header .contact-text {
        font-size: 0.85rem;
    }
    
    .contact-item {
        padding: 10px;
        gap: 10px;
    }
    
    .contact-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .contact-text h4 {
        font-size: 0.9rem;
    }
    
    .contact-text p {
        font-size: 0.8rem;
    }
    
    .map-link {
        font-size: 0.7rem;
    }
    
    .contact-form h3 {
        font-size: 1.1rem;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .form-group {
        margin-bottom: 14px;
        margin-top: 14px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 8px;
        font-size: 0.8rem;
    }
    
    .form-group label {
        font-size: 0.75rem;
    }
    
    .form-submit {
        padding: 0 10px;
    }
    
    .submit-btn {
        padding: 14px 20px;
        font-size: 0.85rem;
        gap: 8px;
        border-radius: 10px;
    }
    
    .submit-btn i {
        font-size: 1rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .category-card {
        height: 220px;
    }
}

@media (max-width: 1024px) {
    .nav-search-container {
        display: none;
    }
    
    .mobile-search-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        height: 100dvh;
        background: var(--primary-black);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 100px 30px 40px;
        gap: 8px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0,0,0,0.4);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu .nav-link {
        font-size: 1.3rem;
        color: var(--pure-white);
        padding: 14px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-menu .nav-link:hover {
        color: var(--gold);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-actions {
        z-index: 1001;
    }
    
    .contact-container {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .contact-cards {
        gap: 30px;
    }
    
    .contact-header .section-title {
        font-size: 1.5rem;
    }
    
    .contact-header .contact-text {
        font-size: 0.95rem;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 25px 20px;
        border-radius: 18px;
    }
    
    .contact-header {
        margin-bottom: 25px;
    }
    
    .contact-header .section-title {
        font-size: 1.5rem;
    }
    
    .contact-header .section-tag {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
    
    .contact-header .contact-text {
        font-size: 0.95rem;
        margin-top: 18px;
    }
    
    .contact-map-full {
        height: 280px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .contact-content {
        padding: 30px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-top {
        padding: 50px 0 30px;
    }
    
    .footer-logo {
        font-size: 1.3rem;
        justify-content: center;
    }
    
    .footer-desc {
        text-align: center;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .footer-links h4 {
        margin-bottom: 15px;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
    
    .footer-contact {
        display: inline-block;
        text-align: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .back-to-top {
        left: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top i {
        font-size: 1rem;
    }
    
    .price-slider-container {
        margin: 0 auto 20px;
    }
    
    .price-slider-header {
        margin-bottom: 18px;
    }
    
    .price-slider-label {
        font-size: 0.85rem;
    }
    
    .price-slider-values {
        font-size: 0.9rem;
    }
    
    .price-slider-track {
        margin: 0 10px;
        height: 55px;
    }
    
    .slider-thumb {
        width: 24px;
        height: 24px;
        border-width: 3px;
    }
    
    .slider-thumb .thumb-value {
        font-size: 0.7rem;
        padding: 4px 10px;
        margin-bottom: 8px;
    }
}

@media (max-width: 576px) {
    .mobile-search-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background: linear-gradient(135deg, var(--gold) 0%, #d4b76a 100%);
        border: none;
        border-radius: 50%;
        color: var(--primary-black);
        font-size: 0.8rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .mobile-search-btn:hover {
        background: linear-gradient(135deg, #d4b76a 0%, var(--gold) 100%);
        box-shadow: 0 4px 15px rgba(201, 169, 89, 0.4);
    }

    .search-overlay {
        top: 65px;
        width: 90%;
        max-width: 320px;
        padding: 16px;
        border-radius: 14px;
    }

    .search-input {
        padding: 12px 40px 12px 14px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
}

.product-detail-page {
    padding: 40px 0;
    background: var(--cream);
    min-height: 60vh;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.gallery-main {
    border-radius: 20px;
    overflow: hidden;
    background: var(--pure-white);
    box-shadow: var(--shadow-md);
}

.gallery-main img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.gallery-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.gallery-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-black);
    color: var(--pure-white);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-btn:hover {
    background: var(--gold);
    color: var(--primary-black);
}

.gallery-indicators {
    display: flex;
    gap: 8px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--gold);
    transform: scale(1.2);
}

.product-info-detail {
    padding: 20px;
}

.product-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    color: var(--pure-white);
    margin-bottom: 15px;
}

.product-category-detail {
    display: block;
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-title-detail {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 20px;
    line-height: 1.3;
}

.product-price-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.price-current-detail {
    font-size: 1.8rem;
    font-weight: 700;
}

.price-old-detail {
    font-size: 1.2rem;
    color: #888;
    text-decoration: line-through;
}

.discount-tag-detail {
    padding: 5px 12px;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    color: var(--pure-white);
}

.product-code {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    padding: 10px 15px;
    background: #f5f5f5;
    border-radius: 8px;
    display: inline-block;
}

.product-colors {
    margin-bottom: 20px;
}

.color-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-black);
    margin-bottom: 10px;
}

.color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.color-swatch {
    padding: 6px 14px;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #555;
}

.product-sizes {
    margin-bottom: 20px;
}

.size-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-black);
    margin-bottom: 10px;
    display: block;
}

.size-label .required {
    color: #e74c3c;
}

.size-label .size-hint {
    font-size: 0.7rem;
    font-weight: 400;
    color: #888;
    margin-left: 5px;
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.size-btn {
    min-width: 48px;
    padding: 10px 16px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.size-btn:hover {
    border-color: #333;
    background: #f8f8f8;
}

.size-btn.selected {
    background: var(--primary-black);
    border-color: var(--primary-black);
    color: #fff;
}

.size-error {
    display: block;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 8px;
}

.product-description {
    margin-bottom: 25px;
    padding: 20px;
    background: #fafafa;
    border-radius: 12px;
}

.product-description h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-black);
}

.product-description p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-order-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--pure-white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
}

.btn-order-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-order-whatsapp i {
    font-size: 1.3rem;
}

.btn-back-products {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--primary-black);
    color: var(--pure-white);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-back-products:hover {
    background: var(--gold);
    color: var(--primary-black);
    transform: translateY(-2px);
}

.related-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #eee;
}

.product-not-found {
    text-align: center;
    padding: 80px 20px;
}

.product-not-found h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-black);
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--primary-black);
    color: var(--pure-white);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: var(--gold);
    color: var(--primary-black);
}

.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.error-content {
    text-align: center;
}

.error-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.error-icon i {
    font-size: 8rem;
    color: var(--gold);
    opacity: 0.3;
}

.error-code {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-black);
}

.error-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.error-message {
    font-size: 1.1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-gallery {
        position: static;
    }
    
    .product-title-detail {
        font-size: 1.6rem;
    }
    
    .price-current-detail {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .product-detail-page {
        padding: 20px 0;
    }
    
    .product-info-detail {
        padding: 10px;
    }
    
    .product-title-detail {
        font-size: 1.4rem;
    }
    
    .price-current-detail {
        font-size: 1.3rem;
    }
    
    .product-actions {
        gap: 10px;
    }
    
    .btn-order-whatsapp,
    .btn-back-products {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .error-title {
        font-size: 1.8rem;
    }
    
    .error-message {
        font-size: 1rem;
    }
    
    .error-actions {
        flex-direction: column;
    }
    
    .error-actions .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .showcase {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .showcase {
        padding: 30px 0;
    }
    
    .section-header {
        margin-bottom: 20px;
    }
    
    .products-grid {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 15px;
    }
}
    50% {
        box-shadow: 0 4px 35px rgba(37, 211, 102, 0.7);
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-black);
    border-radius: 50%;
    color: var(--pure-white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-fast);
    z-index: 999;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--primary-black);
}

@media (max-width: 1400px) {
    .container {
        max-width: 1200px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .category-card {
        height: 300px;
    }
    
    .product-title {
        font-size: 1rem;
    }
    
    .price-current {
        font-size: 1.1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image-main img {
        height: 400px;
    }
    
    .about-image-secondary {
        right: -20px;
        bottom: -30px;
    }
    
    .about-image-secondary img {
        height: 150px;
    }
    
    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
        padding: 28px;
    }
    
    .offers-banner {
        min-height: 500px;
    }
    
    .offers-carousel {
        min-height: 500px;
    }
    
    .offers-slides {
        min-height: 500px;
    }
    
    .offer-slide {
        min-height: 500px;
    }
    
    .offer-slide.active {
        min-height: 500px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 750px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .category-card {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .form-submit {
        padding: 0 5px;
    }
    
    .submit-btn {
        padding: 15px 25px;
        font-size: 0.9rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .category-card {
        height: 260px;
    }
    
    .category-content {
        padding: 16px;
    }
    
    .category-title {
        font-size: 1.1rem;
    }
    
    .feature-item {
        padding: 14px;
    }
    
    .feature-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    
    .btn-view-more,
    .btn-load-more {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
    
    .price-slider-container {
        margin: 0 20px 20px;
    }
    
    .price-slider-header {
        margin-bottom: 18px;
    }
    
    .price-slider-label {
        font-size: 0.85rem;
    }
    
    .price-slider-values {
        font-size: 0.9rem;
    }
    
    .price-slider-track {
        margin: 0 10px;
        height: 55px;
    }
    
    .slider-thumb {
        width: 24px;
        height: 24px;
        border-width: 3px;
    }
    
    .slider-thumb .thumb-value {
        font-size: 0.7rem;
        padding: 4px 10px;
        margin-bottom: 8px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 18px 15px;
        border-radius: 14px;
    }
    
    .contact-header {
        margin-bottom: 20px;
    }
    
    .contact-header .section-title {
        font-size: 1.3rem;
    }
    
    .contact-header .section-tag {
        font-size: 0.65rem;
    }
    
    .contact-header .contact-text {
        font-size: 0.85rem;
    }
    
    .contact-item {
        padding: 10px;
        gap: 10px;
    }
    
    .contact-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .contact-text h4 {
        font-size: 0.9rem;
    }
    
    .contact-text p {
        font-size: 0.8rem;
    }
    
    .map-link {
        font-size: 0.7rem;
    }
    
    .contact-form h3 {
        font-size: 1.1rem;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .form-group {
        margin-bottom: 14px;
        margin-top: 14px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 8px;
        font-size: 0.8rem;
    }
    
    .form-group label {
        font-size: 0.75rem;
    }
    
    .form-submit {
        padding: 0 10px;
    }
    
    .submit-btn {
        padding: 14px 20px;
        font-size: 0.85rem;
        gap: 8px;
        border-radius: 10px;
    }
    
    .submit-btn i {
        font-size: 1rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .category-card {
        height: 220px;
    }
}

@media (max-width: 1024px) {
    .nav-search-container {
        display: none;
    }
    
    .mobile-search-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        height: 100dvh;
        background: var(--primary-black);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 100px 30px 40px;
        gap: 8px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0,0,0,0.4);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu .nav-link {
        font-size: 1.3rem;
        color: var(--pure-white);
        padding: 14px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-menu .nav-link:hover {
        color: var(--gold);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-actions {
        z-index: 1001;
    }
    
    .contact-container {
        padding: 30px 20px;
        border-radius: 16px;
    }
    
    .contact-cards {
        gap: 30px;
    }
    
    .contact-header .section-title {
        font-size: 1.5rem;
    }
    
    .contact-header .contact-text {
        font-size: 0.95rem;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 25px 20px;
        border-radius: 18px;
    }
    
    .contact-header {
        margin-bottom: 25px;
    }
    
    .contact-header .section-title {
        font-size: 1.5rem;
    }
    
    .contact-header .section-tag {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
    
    .contact-header .contact-text {
        font-size: 0.95rem;
        margin-top: 18px;
    }
    
    .contact-map-full {
        height: 280px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .contact-content {
        padding: 30px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-top {
        padding: 50px 0 30px;
    }
    
    .footer-logo {
        font-size: 1.3rem;
        justify-content: center;
    }
    
    .footer-desc {
        text-align: center;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .footer-links h4 {
        margin-bottom: 15px;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
    
    .footer-contact {
        display: inline-block;
        text-align: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .back-to-top {
        left: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top i {
        font-size: 1rem;
    }
    
    .price-slider-container {
        margin: 0 auto 20px;
    }
    
    .price-slider-header {
        margin-bottom: 18px;
    }
    
    .price-slider-label {
        font-size: 0.85rem;
    }
    
    .price-slider-values {
        font-size: 0.9rem;
    }
    
    .price-slider-track {
        margin: 0 10px;
        height: 55px;
    }
    
    .slider-thumb {
        width: 24px;
        height: 24px;
        border-width: 3px;
    }
    
    .slider-thumb .thumb-value {
        font-size: 0.7rem;
        padding: 4px 10px;
        margin-bottom: 8px;
    }
}
    
    .price-slider-header {
        margin-bottom: 18px;
    }
    
    .price-slider-label {
        font-size: 0.85rem;
    }
    
    .price-slider-values {
        font-size: 0.9rem;
    }
    
    .price-slider-track {
        margin: 0 8px;
        height: 55px;
    }
    
    .slider-thumb {
        width: 22px;
        height: 22px;
        border-width: 3px;
    }
    
    .slider-thumb .thumb-value {
        font-size: 0.7rem;
        padding: 4px 8px;
        margin-bottom: 6px;
    }
}

@media (max-width: 576px) {
    .mobile-search-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background: linear-gradient(135deg, var(--gold) 0%, #d4b76a 100%);
        border: none;
        border-radius: 50%;
        color: var(--primary-black);
        font-size: 0.8rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .mobile-search-btn:hover {
        background: linear-gradient(135deg, #d4b76a 0%, var(--gold) 100%);
        box-shadow: 0 4px 15px rgba(201, 169, 89, 0.4);
    }

    .search-overlay {
        top: 65px;
        width: 90%;
        max-width: 320px;
        padding: 16px;
        border-radius: 14px;
    }

    .search-input {
        padding: 12px 40px 12px 14px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .search-close {
        width: 24px;
        height: 24px;
    }

    .search-close svg {
        width: 12px;
        height: 12px;
    }

    html {
        overflow-x: hidden;
    }
    
    body {
        overflow-x: hidden;
        overflow-y: auto;
    }
    
    .container {
        padding: 0 14px;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .nav-container {
        padding: 0 14px;
    }
    
    .nav-logo {
        font-size: 1.05rem;
        gap: 6px;
    }
    
    .nav-logo .logo-icon {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        max-width: 100%;
        padding: 80px 20px 30px;
    }
    
    .nav-menu .nav-link {
        font-size: 1.15rem;
        padding: 12px 0;
    }
    
    .nav-actions {
        gap: 8px;
    }
    
    .nav-search {
        font-size: 0.85rem;
        padding: 5px;
    }
    
    .nav-toggle {
        width: 22px;
        height: 16px;
    }
    
    .search-overlay {
        top: 65px;
        width: 92%;
        max-width: none;
        padding: 18px;
        border-radius: 16px;
    }
    
    .search-input {
        padding: 15px 45px 15px 45px;
        font-size: 1rem;
    }
    
    .search-close {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        right: 10px;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-content {
        padding: 70px 10px 35px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 14vw, 3rem);
    }
    
    .loader-text {
        font-size: 2.5rem;
        letter-spacing: 0.25em;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .hero-location {
        font-size: 0.75rem;
    }
    
    .hero-buttons {
        gap: 10px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        max-width: 250px;
    }
    
    .hero-slider-nav {
        bottom: 15px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .features-bar {
        padding: 40px 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .feature-item {
        padding: 14px;
        gap: 10px;
    }
    
    .feature-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        border-radius: 10px;
    }
    
    .feature-content h4 {
        font-size: 0.85rem;
    }
    
    .feature-content p {
        font-size: 0.7rem;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-tag {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
        margin-bottom: 8px;
        margin-bottom: 10px;
    }
    
    .section-title {
        font-size: clamp(1.6rem, 7vw, 2rem);
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .categories,
    .showcase,
    .about {
        padding: 50px 0;
        display: block !important;
    }
    
    .categories-grid {
        gap: 15px;
    }
    
    .category-card {
        height: 250px;
    }
    
    .category-content {
        padding: 15px;
    }
    
    .category-tag {
        font-size: 0.65rem;
        padding: 4px 10px;
        margin-bottom: 10px;
    }
    
    .category-title {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
    
    .category-count {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }
    
    .category-link {
        font-size: 0.8rem;
    }
    
    .showcase {
        display: block !important;
    }
    
    .products-grid {
        display: grid !important;
        visibility: visible !important;
    }
    
    .products-filter {
        margin-bottom: 16px;
        gap: 6px;
    }
    
    .filter-btn {
        padding: 8px 14px;
        font-size: 0.75rem;
        max-width: none;
        border-radius: 20px;
    }
    
    .price-slider-container {
        margin: 0 10px 20px;
    }
    
    .price-slider-header {
        margin-bottom: 15px;
    }
    
    .price-slider-label {
        font-size: 0.8rem;
    }
    
    .price-slider-values {
        font-size: 0.85rem;
    }
    
    .price-slider-track {
        margin: 0 5px;
        height: 50px;
    }
    
    .slider-thumb {
        width: 22px;
        height: 22px;
        border-width: 3px;
    }
    
    .slider-thumb .thumb-value {
        font-size: 0.7rem;
        padding: 4px 8px;
        margin-bottom: 6px;
    }
    
    .slider-thumb .thumb-value::after {
        border-width: 4px;
    }
    
    .slider-track {
        height: 5px;
    }
    
    .slider-range {
        height: 5px;
    }
    
    .product-card {
        border-radius: 12px;
    }
    
    .product-card::before {
        height: 2px;
    }
    
    .product-image {
        aspect-ratio: 1/1;
    }
    
    .product-info {
        padding: 10px;
    }
    
    .product-category {
        font-size: 9px;
        letter-spacing: 0.5px;
        margin-bottom: 3px;
    }
    
    .product-title {
        font-size: 12px;
        margin-bottom: 5px;
        -webkit-line-clamp: 2;
    }
    
    .product-price-box {
        gap: 5px;
        margin-bottom: 8px;
    }
    
    .price-current {
        font-size: 13px;
    }
    
    .price-old {
        font-size: 10px;
    }
    
    .discount-tag {
        font-size: 9px;
        padding: 2px 5px;
    }
    
    .product-btn {
        padding: 9px;
        font-size: 10px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    
    .product-btn i {
        font-size: 12px;
    }
    
    .product-badges {
        top: 6px;
        left: 6px;
        gap: 4px;
    }
    
    .badge {
        padding: 2px 6px;
        font-size: 0.5rem;
    }
    
    .offers-banner {
        min-height: 350px;
        padding: 40px 10px;
    }
    
    .offers-container {
        padding: 20px 15px;
        width: 95%;
    }
    
    .offers-carousel {
        min-height: 350px;
    }
    
    .offers-slides {
        min-height: 350px;
    }
    
    .offer-slide {
        min-height: 350px;
    }
    
    .offer-slide.active {
        min-height: 350px;
    }
    
    .offers-badge {
        padding: 8px 15px;
        font-size: 0.7rem;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }
    
    .badge-text {
        padding-left: 12px;
    }
    
    .badge-pulse {
        width: 8px;
        height: 8px;
        left: 10px;
    }
    
    .offers-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
        margin-bottom: 15px;
    }
    
    .offers-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .countdown {
        gap: 8px;
        margin-bottom: 20px;
        align-items: flex-start;
    }
    
    .countdown-item {
        flex-direction: column;
        align-items: center;
    }
    
    .countdown-value {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        border-radius: 6px;
        margin-bottom: 4px;
    }
    
    .countdown-label {
        font-size: 0.5rem;
        letter-spacing: 0.3px;
    }
    
    .countdown-separator {
        font-size: 1.2rem;
        margin-top: 12px;
        opacity: 0.7;
    }
    
    .countdown-note {
        font-size: 0.7rem;
    }
    
    .about-image-main img {
        height: 220px;
        border-radius: 15px;
    }
    
    .about-image-secondary {
        width: 40%;
        right: -15px;
        bottom: -20px;
    }
    
    .about-image-secondary img {
        height: 90px;
        border-radius: 12px;
    }
    
    .about-experience {
        padding: 10px 15px;
    }
    
    .exp-number {
        font-size: 1.5rem;
    }
    
    .exp-text {
        font-size: 0.6rem;
    }
    
    .about-lead {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .about-text {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .about-features {
        gap: 15px;
        margin: 25px 0;
    }
    
    .about-feature {
        gap: 12px;
    }
    
    .about-feature .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .about-feature h4 {
        font-size: 0.9rem;
    }
    
    .about-feature p {
        font-size: 0.8rem;
    }
    
    .testimonials {
        padding: 50px 0;
    }
    
    .testimonials-track {
        gap: 15px;
    }
    
    .testimonial-card {
        flex: 0 0 calc(100% - 15px);
        padding: 20px;
        border-radius: 18px;
    }
    
    .testimonial-quote {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .testimonial-rating {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
    
    .testimonial-author img {
        width: 45px;
        height: 45px;
    }
    
    .author-info h4 {
        font-size: 0.9rem;
    }
    
    .author-info span {
        font-size: 0.8rem;
    }
    
    .testimonials-nav {
        margin-top: 30px;
    }
    
    .testimonial-prev,
    .testimonial-next {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .contact-map-full {
        height: 220px;
    }
    
    .contact-content {
        padding: 30px 0;
        min-height: auto;
    }
    
    .contact-container {
        padding: 25px 15px;
    }
    
    .contact-cards {
        gap: 25px;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 25px 18px;
        border-radius: 16px;
    }
    
    .contact-item {
        padding: 14px;
        gap: 14px;
    }
    
    .contact-form h3 {
        font-size: 1.3rem;
        margin: 0 auto 20px auto;
        text-align: center;
    }
    
    .form-group {
        margin-bottom: 15px;
        margin-top: 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 12px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .contact-details {
        gap: 10px;
    }
    
    .contact-item {
        gap: 14px;
        padding: 15px;
    }
    
    .contact-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    
    .contact-text h4 {
        font-size: 0.9rem;
    }
    
    .contact-text p {
        font-size: 0.85rem;
    }
    
    .map-link {
        font-size: 0.8rem;
    }
    
    .contact-socials {
        gap: 10px;
    }
    
    .contact-socials .social-link {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .footer-top {
        padding: 40px 0 25px;
    }
    
    .footer-grid {
        gap: 25px;
    }
    
    .footer-logo {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .footer-logo .logo-icon {
        font-size: 1.5rem;
    }
    
    .footer-desc {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .footer-socials a {
        width: 40px;
        height: 40px;
    }
    
    .footer-links h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .footer-links li {
        margin-bottom: 6px;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float a {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .back-to-top {
        left: 15px;
        bottom: 15px;
        width: 40px;
        height: 40px;
    }
    
    .back-to-top i {
        font-size: 0.9rem;
    }
    
    .nav-search-container {
        display: none;
    }
}

@media (max-width: 400px) {
    html {
        overflow-x: hidden;
    }
    
    body {
        overflow-x: hidden;
        overflow-y: auto;
    }
    
    .navbar {
        padding: 8px 0;
    }
    
    .nav-container {
        padding: 0 12px;
    }
    
    .nav-logo {
        font-size: 0.95rem;
        gap: 5px;
    }
    
    .nav-logo .logo-icon {
        font-size: 1.1rem;
    }
    
    .countdown {
        gap: 4px;
        margin-bottom: 15px;
    }
    
    .countdown-item {
        flex-direction: column;
        align-items: center;
    }
    
    .countdown-value {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
        border-radius: 5px;
        margin-bottom: 2px;
    }
    
    .countdown-label {
        font-size: 0.4rem;
        letter-spacing: 0.2px;
    }
    
    .countdown-separator {
        font-size: 1rem;
        margin-top: 10px;
        opacity: 0.6;
    }
    
    .countdown-note {
        font-size: 0.65rem;
    }
}

@media (max-width: 400px) {
    html {
        overflow-x: hidden;
    }
    
    body {
        overflow-x: hidden;
        overflow-y: auto;
    }
    
    .navbar {
        padding: 8px 0;
    }
    
    .nav-container {
        padding: 0 12px;
    }
    
    .nav-logo {
        font-size: 0.95rem;
        gap: 5px;
    }
    
    .nav-logo .logo-icon {
        font-size: 1.1rem;
    }
    
    .nav-menu .nav-link {
        font-size: 1.05rem;
        padding: 10px 0;
    }
    
    .nav-actions {
        gap: 6px;
    }
    
    .nav-search {
        font-size: 0.8rem;
        padding: 4px;
    }
    
    .nav-toggle {
        width: 20px;
        height: 14px;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 16vw, 2.5rem);
    }
    
    .loader-text {
        font-size: 2rem;
        letter-spacing: 0.2em;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 0.8rem;
        max-width: 220px;
    }
    
    .feature-item {
        padding: 12px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .feature-content h4 {
        font-size: 0.85rem;
    }
    
    .feature-content p {
        font-size: 0.7rem;
    }
    
    .showcase {
        padding: 30px 0;
        display: block !important;
    }
    
    .products-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }
    
    .product-card {
        display: block !important;
        visibility: visible !important;
        border-radius: 10px;
    }
    
    .product-info {
        padding: 8px;
    }
    
    .product-category {
        font-size: 8px;
        margin-bottom: 2px;
    }
    
    .brand-tag {
        font-size: 6px;
        margin: 0 1px;
    }
    
    .brand-name {
        font-size: 8px;
    }
    
    .product-title {
        font-size: 11px;
        margin-bottom: 4px;
    }
    
    .product-price-box {
        gap: 4px;
        margin-bottom: 6px;
    }
    
    .price-current {
        font-size: 12px;
    }
    
    .price-old {
        font-size: 9px;
    }
    
    .discount-tag {
        font-size: 8px;
        padding: 1px 4px;
    }
    
    .product-btn {
        padding: 7px;
        font-size: 9px;
        border-radius: 6px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }
    
    .product-btn i {
        font-size: 10px;
    }
    
    .badge {
        padding: 2px 6px;
        font-size: 0.5rem;
    }
    
    .category-card {
        height: 220px;
    }
    
    .category-content {
        padding: 12px;
    }
    
    .category-tag {
        font-size: 0.6rem;
        padding: 3px 8px;
    }
    
    .category-title {
        font-size: 1.1rem;
    }
    
    .category-count {
        font-size: 0.7rem;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 0.75rem;
        max-width: 160px;
    }
    
    .countdown-value {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .countdown-label {
        font-size: 0.55rem;
    }
    
    .about-image-secondary {
        width: 35%;
    }
    
    .about-image-secondary img {
        height: 70px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
    
    .whatsapp-float a {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .back-to-top {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 350px) {
    html {
        overflow-x: hidden;
    }
    
    body {
        overflow-x: hidden;
        overflow-y: auto;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .navbar {
        padding: 6px 0;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .nav-logo {
        font-size: 0.9rem;
        gap: 4px;
    }
    
    .nav-logo .logo-icon {
        font-size: 1rem;
    }
    
    .nav-menu .nav-link {
        font-size: 1rem;
        padding: 10px 0;
    }
    
    .nav-actions {
        gap: 5px;
    }
    
    .nav-search {
        font-size: 0.75rem;
        padding: 4px;
    }
    
    .nav-toggle {
        width: 18px;
        height: 12px;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }
    
    .hero {
        min-height: 450px;
    }
    
    .hero-content {
        padding: 60px 5px 30px;
    }
    
    .hero-title {
        font-size: clamp(1.6rem, 18vw, 2rem);
        margin-bottom: 15px;
    }
    
    .loader-text {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        gap: 8px;
    }
    
    .btn {
        padding: 8px 15px;
        font-size: 0.75rem;
        max-width: 200px;
    }
    
    .feature-item {
        padding: 10px;
        gap: 10px;
    }
    
    .feature-icon {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    
    .section-tag {
        font-size: 0.6rem;
        letter-spacing: 1px;
        margin-bottom: 6px;
    }
    
    .section-title {
        font-size: clamp(1.4rem, 8vw, 1.8rem);
    }
    
    .section-subtitle {
        font-size: 0.85rem;
    }
    
    .categories,
    .showcase,
    .about {
        padding: 40px 0;
    }
    
    .products-grid {
        gap: 6px !important;
    }
    
    .product-card {
        border-radius: 8px;
    }
    
    .product-info {
        padding: 6px;
    }
    
    .product-category {
        font-size: 7px;
        letter-spacing: 0.5px;
        margin-bottom: 2px;
    }
    
    .brand-tag {
        font-size: 5px;
        margin: 0 1px;
    }
    
    .brand-name {
        font-size: 7px;
    }
    
    .product-title {
        font-size: 10px;
        margin-bottom: 3px;
    }
    
    .product-price-box {
        gap: 3px;
        margin-bottom: 5px;
    }
    
    .price-current {
        font-size: 11px;
    }
    
    .price-old {
        font-size: 8px;
    }
    
    .discount-tag {
        font-size: 7px;
        padding: 1px 3px;
    }
    
    .product-btn {
        padding: 6px;
        font-size: 8px;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
    }
    
    .product-btn i {
        font-size: 9px;
    }
    
    .badge {
        padding: 2px 5px;
        font-size: 0.45rem;
    }
    
    .category-card {
        height: 200px;
        border-radius: 15px;
    }
    
    .category-content {
        padding: 10px;
    }
    
    .category-tag {
        font-size: 0.55rem;
        padding: 2px 6px;
        margin-bottom: 8px;
    }
    
    .category-title {
        font-size: 1rem;
    }
    
    .category-count {
        font-size: 0.65rem;
    }
    
    .offers-banner {
        min-height: 300px;
        padding: 30px 5px;
    }
    
    .offers-carousel {
        min-height: 300px;
    }
    
    .offers-slides {
        min-height: 300px;
    }
    
    .offer-slide {
        min-height: 300px;
    }
    
    .offer-slide.active {
        min-height: 300px;
    }
    
    .offers-badge {
        padding: 6px 12px;
        font-size: 0.6rem;
    }
    
    .offers-title {
        font-size: clamp(1.3rem, 10vw, 1.8rem);
    }
    
    .offers-subtitle {
        font-size: 0.8rem;
    }
    
    .countdown-value {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .countdown-label {
        font-size: 0.5rem;
    }
    
    .about-image-main img {
        height: 180px;
        border-radius: 12px;
    }
    
    .about-image-secondary {
        width: 30%;
    }
    
    .about-image-secondary img {
        height: 60px;
        border-radius: 10px;
    }
    
    .about-experience {
        padding: 8px 12px;
    }
    
    .exp-number {
        font-size: 1.3rem;
    }
    
    .exp-text {
        font-size: 0.55rem;
    }
    
    .about-lead {
        font-size: 0.95rem;
    }
    
    .about-text {
        font-size: 0.8rem;
    }
    
    .about-feature h4 {
        font-size: 0.85rem;
    }
    
    .about-feature p {
        font-size: 0.75rem;
    }
    
    .testimonial-card {
        padding: 15px;
    }
    
    .testimonial-quote {
        font-size: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 0.85rem;
    }
    
    .testimonial-author img {
        width: 40px;
        height: 40px;
    }
    
    .author-info h4 {
        font-size: 0.85rem;
    }
    
    .author-info span {
        font-size: 0.75rem;
    }
    
    .contact-map-full {
        height: 180px;
    }
    
    .contact-content {
        padding: 25px 0;
        min-height: auto;
    }
    
    .contact-container {
        padding: 20px 15px;
    }
    
    .contact-cards {
        gap: 20px;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 22px 16px;
        border-radius: 16px;
    }
    
    .contact-item {
        padding: 12px;
        gap: 12px;
    }
    
    .contact-icon {
        width: 36px;
        height: 36px;
    }
    
    .contact-form h3 {
        font-size: 1.2rem;
        margin: 0 auto 18px auto;
        text-align: center;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-row {
        gap: 12px;
    }
    
    .form-group {
        margin-top: 12px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 10px;
        font-size: 0.85rem;
    }
    
    .form-group label {
        font-size: 0.8rem;
    }
    
    .contact-details {
        gap: 8px;
    }
    
    .contact-item {
        gap: 10px;
        padding: 12px;
    }
    
    .contact-icon {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
    
    .contact-text h4 {
        font-size: 0.85rem;
    }
    
    .contact-text p {
        font-size: 0.8rem;
    }
    
    .map-link {
        font-size: 0.7rem;
    }
    
    .contact-socials {
        gap: 12px;
        margin-top: 20px;
        padding-top: 18px;
    }
    
    .contact-socials .social-link {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    
    .footer-top {
        padding: 30px 0 20px;
    }
    
    .footer-logo {
        font-size: 1.1rem;
    }
    
    .footer-socials a {
        width: 35px;
        height: 35px;
    }
    
    .footer-links h4 {
        font-size: 0.95rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .whatsapp-float a {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    
    .back-to-top {
        width: 35px;
        height: 35px;
    }
    
    .price-slider-container {
        margin: 0 5px 15px;
    }
    
    .price-slider-header {
        margin-bottom: 10px;
    }
    
    .price-slider-label {
        font-size: 0.75rem;
    }
    
    .price-slider-values {
        font-size: 0.8rem;
    }
    
    .price-slider-track {
        margin: 0 2px;
        height: 45px;
    }
    
    .slider-thumb {
        width: 24px;
        height: 24px;
        border-width: 3px;
    }
    
    .slider-thumb .thumb-value {
        font-size: 0.6rem;
        padding: 3px 6px;
        margin-bottom: 5px;
    }
    
    .slider-thumb .thumb-value::after {
        border-width: 3px;
    }
    
    .slider-track {
        height: 4px;
    }
    
    .slider-range {
        height: 4px;
    }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .hero-content {
        padding: 60px 20px 30px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .btn {
        max-width: 200px;
    }
    
    .loader-text {
        font-size: 2.5rem;
    }
}

@media (orientation: landscape) and (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 80px 0 50px;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 3rem);
    }
}

@media (hover: none) and (pointer: coarse) {
    .category-link {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-link:hover {
        color: var(--pure-white);
    }
    
    .nav-link:hover::after {
        width: 0;
    }
    
    .navbar.scrolled .nav-link:hover {
        color: var(--primary-black);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-title .title-word {
        animation: none;
        opacity: 1;
    }
}

@media (min-width: 1921px) {
    .container {
        max-width: 1600px;
    }
    
    body {
        font-size: 18px;
    }
    
    .hero-title {
        font-size: 7rem;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
}

@media all and (max-width: 768px) {
    html, body {
        overflow-y: auto !important;
        overflow-x: hidden;
    }
    
    .showcase {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        min-height: auto !important;
        height: auto !important;
        overflow: visible !important;
    }
    
    .showcase .container {
        display: block !important;
        visibility: visible !important;
    }
    
    .products-grid {
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
        min-height: 100px !important;
    }
    
    .product-card {
        display: block !important;
        visibility: visible !important;
    }
    
    .product-info {
        display: block !important;
        visibility: visible !important;
    }
    
    .product-rating {
        display: flex !important;
        flex-wrap: nowrap !important;
        visibility: visible !important;
    }
    
    .stars {
        display: flex !important;
        flex-wrap: nowrap !important;
        white-space: nowrap !important;
        visibility: visible !important;
    }
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--dark-gray);
    background: var(--soft-bg);
    border-radius: 20px;
    margin: 20px 0;
}

.no-results > svg {
    display: block;
    margin: 0 auto 20px;
    color: var(--gold);
    opacity: 0.7;
}

.no-results h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-black);
}

.no-results p {
    color: var(--medium-gray);
    margin-bottom: 25px;
}

.btn-clear-search {
    background: linear-gradient(135deg, var(--gold) 0%, #d4b76a 100%);
    color: var(--primary-black);
    border: none;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(201, 169, 89, 0.3);
}

.btn-clear-search:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 89, 0.5);
    background: linear-gradient(135deg, #d4b76a 0%, var(--gold) 100%);
}

.btn-clear-search:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201, 169, 89, 0.3);
}

.btn-clear-search i {
    font-size: 12px;
}

.product-detail-page {
    padding: 60px 0 80px;
    min-height: 100vh;
    background: var(--pure-white);
}

.product-not-found {
    text-align: center;
    padding: 80px 20px;
}

.product-not-found h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--medium-gray);
}

.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary-black);
}

.breadcrumb span {
    color: var(--text-color);
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
    max-width: 600px;
}

.gallery-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #f8f8f8;
    box-shadow: var(--shadow-lg);
}

.gallery-main img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
}

.gallery-main .no-image {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--medium-gray);
    background: #f0f0f0;
}

.gallery-toggle {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.gallery-toggle:hover {
    background: var(--gold);
    color: var(--primary-black);
}

.gallery-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.gallery-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--light-gray);
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-btn:hover {
    background: var(--gold);
    color: var(--primary-black);
}

.gallery-indicators {
    display: flex;
    gap: 8px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--light-gray);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: var(--gold);
    transform: scale(1.2);
}

.product-info-detail {
    padding: 20px 0;
}

.product-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    margin-bottom: 15px;
}

.product-category-detail {
    display: block;
    font-size: 14px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.product-title-detail {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-price-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.price-current-detail {
    font-size: 2rem;
    font-weight: 700;
}

.price-old-detail {
    font-size: 1.2rem;
    text-decoration: line-through;
}

.discount-tag-detail {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.product-code {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 25px;
    padding: 10px 15px;
    background: #f5f5f5;
    border-radius: 8px;
    display: inline-block;
}

.product-code strong {
    color: var(--text-color);
}

.product-colors {
    margin-bottom: 25px;
}

.color-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
}

.color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-swatch {
    padding: 8px 16px;
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.3s;
}

.color-swatch:hover {
    border-color: var(--gold);
    background: #fff8e6;
}

.product-sizes {
    margin-bottom: 25px;
}

.size-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
    display: block;
}

.size-label .required {
    color: #e74c3c;
}

.size-label .size-hint {
    font-size: 11px;
    font-weight: 400;
    color: #888;
    margin-left: 5px;
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.size-btn {
    min-width: 50px;
    padding: 12px 18px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.size-btn:hover {
    border-color: var(--primary-black);
    background: #f8f8f8;
}

.size-btn.selected {
    background: var(--primary-black);
    border-color: var(--primary-black);
    color: #fff;
}

.size-error {
    display: block;
    color: #e74c3c;
    font-size: 13px;
    margin-top: 10px;
}

.product-description {
    margin-bottom: 30px;
}

.product-description h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 12px;
}

.product-description p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--medium-gray);
}

.btn-order-whatsapp {
    white-space: nowrap;
    padding: 16px 24px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: var(--pure-white);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
}

.btn-order-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 89, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-order-whatsapp:hover {
    background: linear-gradient(135deg, #c9a959 0%, #d4b76a 50%, #c9a959 100%);
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 89, 0.4);
}

.btn-order-whatsapp:hover::before {
    left: 100%;
}

.btn-order-whatsapp i {
    font-size: 20px;
}

.btn-back-products {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: 12px;
    background: var(--soft-bg);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    flex: 1;
    text-align: center;
}

.btn-back-products:hover {
    background: var(--light-gray);
    color: var(--primary-black);
}

.product-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.product-actions .btn-order-whatsapp {
    flex: 1;
    min-width: 200px;
}

.product-actions .btn-back-products {
    flex: 1;
    min-width: 150px;
}

@media (max-width: 576px) {
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn-order-whatsapp,
    .product-actions .btn-back-products {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-gallery {
        position: static;
    }
    
    .product-title-detail {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .product-detail-page {
        padding: 40px 0 40px;
    }
    
    .product-title-detail {
        font-size: 1.6rem;
    }
    
    .price-current-detail {
        font-size: 1.5rem;
    }
    
    .breadcrumb {
        font-size: 12px;
        flex-wrap: wrap;
    }
}

.related-section {
    margin-top: 60px;
    padding-top: 40px;
    background: transparent;
}

@media (max-width: 768px) {
    .related-section {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    .product-gallery {
        position: static;
    }
    
    .gallery-main {
        border-radius: 12px;
    }
    
    .product-info-detail {
        padding: 15px 0;
    }
    
    .product-title-detail {
        font-size: 1.5rem;
    }
    
    .price-current-detail {
        font-size: 1.4rem;
    }
    
    .product-code {
        font-size: 0.85rem;
    }
    
    .btn-order-whatsapp {
        flex: 1;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .product-colors {
        margin: 15px 0;
    }
    
    .color-label {
        font-size: 0.85rem;
    }
    
    .color-swatches {
        gap: 8px;
    }
    
    .color-swatch {
        padding: 4px 10px;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .product-detail-page {
        padding: 30px 0 40px;
    }
    
    .product-title-detail {
        font-size: 1.3rem;
    }
    
    .price-current-detail {
        font-size: 1.2rem;
    }
    
    .discount-tag-detail {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
    
    .breadcrumb {
        font-size: 12px;
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .gallery-nav {
        gap: 10px;
        margin-top: 15px;
    }
    
    .gallery-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    
    .gallery-btn:active {
        background: var(--gold);
    }
    
    .gallery-main {
        cursor: grab;
    }
    
    .product-description h3 {
        font-size: 1rem;
    }
    
    .product-description p {
        font-size: 0.85rem;
    }
    
    .btn-order-whatsapp {
        font-size: 0.9rem;
        padding: 14px 20px;
    }
    
    .product-info-detail .product-price-detail {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 8px;
    }
    
    .product-info-detail .price-old-detail {
        font-size: 0.85rem;
    }
    
    .product-info-detail .discount-tag-detail {
        font-size: 0.7rem;
    }
}

@media (max-width: 400px) {
    .product-detail-container {
        gap: 20px;
    }
    
    .product-title-detail {
        font-size: 1.1rem;
    }
    
    .price-current-detail {
        font-size: 1.1rem;
    }
    
    .price-old-detail {
        font-size: 0.85rem;
    }
    
    .product-code {
        font-size: 0.8rem;
    }
}

/* Install App Button */
.install-app-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold) 0%, #d4b76a 100%);
    border: none;
    border-radius: 50%;
    color: var(--primary-black);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 8px;
}

.install-app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 169, 89, 0.4);
}

.install-app-btn i {
    margin: 0;
}

/* Show install button on mobile */
@media (max-width: 768px) {
    .install-app-btn {
        display: flex;
    }
}

/* Refresh Products Button */
.refresh-products-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold) 0%, #d4b76a 100%);
    border: none;
    border-radius: 50%;
    color: var(--primary-black);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 8px;
}

.refresh-products-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 169, 89, 0.4);
}

.refresh-products-btn.spinning i {
    animation: spin 0.5s linear;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
