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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    font-display: swap;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 0.5rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.menu-toggle {
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.menu-toggle:hover {
    background-color: #f8f9fa;
}

.menu-toggle i {
    font-size: 1.5rem;
    color: #333;
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-svg {
    height: 70px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
}

.logo-text {
    text-align: center;
    line-height: 1.2;
}

.logo-main {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4af37;
    text-decoration: none;
}

.logo-sub {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    margin-top: -2px;
}

/* Search Container */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 25px;
    padding: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 280px;
}

.search-box:focus-within {
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    background: white;
}

#search-input {
    border: none;
    outline: none;
    background: transparent;
    padding: 8px 15px;
    font-size: 0.9rem;
    width: 100%;
    color: #333;
}

#search-input::placeholder {
    color: #999;
    font-size: 0.85rem;
}

.search-btn {
    background: #d4af37;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.search-btn:hover {
    background: #b8941f;
    transform: scale(1.05);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    right: 0;
    width: 350px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    margin-top: 5px;
    z-index: 1001;
    border: 1px solid #e9ecef;
}

.suggestions-header {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.suggestions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.suggestion-tag {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 15px;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion-tag:hover {
    background: #d4af37;
    color: white;
    border-color: #d4af37;
}

.nav-spacer {
    width: 50px;
    height: 50px;
}

/* Dropdown Menu */
.dropdown-menu {
    position: fixed;
    top: 70px;
    left: -300px;
    width: 280px;
    height: calc(100vh - 70px);
    background: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.dropdown-menu.active {
    left: 0;
}



.dropdown-content {
    padding: 2rem 0;
}

.dropdown-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem 2rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    text-align: left;
}

.dropdown-link:hover {
    background-color: #f8f9fa;
    border-left-color: #d4af37;
    color: #d4af37;
}

.dropdown-link i:first-child {
    margin-right: 1rem;
    width: 20px;
    color: #d4af37;
}

.dropdown-section {
    position: relative;
}

.dropdown-section-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem 2rem;
    color: #333;
    font-weight: 600;
    border-left: 3px solid #d4af37;
    background-color: #f8f9fa;
    margin-bottom: 0.5rem;
    text-align: left;
}

.dropdown-section-title i {
    margin-right: 1rem;
    width: 20px;
    color: #d4af37;
}





.submenu-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0.8rem 2rem;
    text-decoration: none;
    color: #666;
    font-weight: 400;
    transition: all 0.3s ease;
    cursor: pointer;
    border-left: 3px solid transparent;
    margin-left: 1rem;
    text-align: left;
}

.submenu-link:hover {
    background-color: #e9ecef;
    color: #d4af37;
    border-left-color: #d4af37;
}

.submenu-link i {
    margin-right: 1rem;
    width: 16px;
    color: #d4af37;
}

/* Overlay for mobile */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.hero-slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider-dot.active {
    background: white;
    transform: scale(1.2);
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 2rem 1.8rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    max-width: 650px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.hero-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.12);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: slideInDown 1s ease;
    text-shadow:
        3px 3px 6px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(255, 255, 255, 0.3);
    color: white;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeIn 1s ease 0.5s both;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(255, 255, 255, 0.2);
    font-weight: 300;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInUp 1s ease 1s both;
    margin-top: 2.5rem;
}

.hero-buttons .btn {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(184, 148, 31, 0.9));
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 1), rgba(184, 148, 31, 1));
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    transform: translateY(-3px);
}

.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-buttons .btn-secondary:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.9), rgba(184, 148, 31, 0.9));
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    transform: translateY(-3px);
    border-color: rgba(212, 175, 55, 0.8);
    color: white;
}

.btn {
    padding: 8px 20px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: #d4af37;
    color: white;
}

.btn-primary:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

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

.btn-back {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #dee2e6;
}

.btn-back:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

/* Floating Animation */
.hero-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}

.floating-card {
    position: absolute;
    width: 100px;
    height: 140px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-1 {
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    top: 60%;
    right: 15%;
    animation: float 6s ease-in-out infinite 2s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation: float 6s ease-in-out infinite 4s;
}

/* Section Styles */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: #d4af37;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Catalog Section */
.catalog-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.category-svg {
    width: 100px;
    height: 100px;
    transition: transform 0.3s ease;
}

.category-card:hover .category-svg {
    transform: scale(1.15);
}

.category-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.category-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Products Section */
.products-section {
    padding: 100px 0;
    background: white;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

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

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.order-btn {
    background: #d4af37;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.order-btn:hover {
    background: #b8941f;
    transform: scale(1.05);
}

.detail-btn {
    background: #6c757d;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

.detail-btn:hover {
    background: #5a6268;
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-code {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.product-price {
    color: #d4af37;
    font-weight: 600;
    font-size: 1.1rem;
}

.product-keywords {
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.keyword-tag {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
    color: #666;
    display: inline-block;
}

/* Product Detail Section */
.product-detail-section {
    padding: 100px 0;
    background: white;
    min-height: 100vh;
}

.product-detail-header {
    margin-bottom: 2rem;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-detail-image {
    position: sticky;
    top: 120px;
}

.product-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-detail-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
}

.product-detail-specs {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e9ecef;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-item strong {
    color: #333;
    font-weight: 600;
}

.spec-item span {
    color: #d4af37;
    font-weight: 600;
}

.product-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.product-notice h3 {
    color: #856404;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-notice h3 i {
    color: #f39c12;
}

.product-notice ul {
    list-style: none;
    padding: 0;
}

.product-notice li {
    padding: 0.5rem 0;
    color: #856404;
    position: relative;
    padding-left: 1.5rem;
}

.product-notice li::before {
    content: '•';
    color: #f39c12;
    position: absolute;
    left: 0;
    font-weight: bold;
}

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

.btn-order {
    background: #25D366;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.btn-order:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-order i {
    font-size: 1.3rem;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 4rem !important;
    align-items: start !important;
}

.about-text .section-title {
    text-align: left !important;
    margin-bottom: 2rem !important;
}

.about-text .section-title::after {
    left: 0 !important;
    transform: none !important;
}



.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
}

.about-features {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.8rem !important;
    height: fit-content !important;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-item i {
    font-size: 1.3rem;
    color: #d4af37;
    margin-bottom: 0.25rem;
}

.feature-item h4 {
    margin-bottom: 0.05rem;
    color: #333;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

.feature-item p {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.2;
    margin: 0;
    margin-top: -0.05rem;
    text-align: center;
}

/* Hide sections when in product view */
.products-section.active~.main-page-only {
    display: none !important;
}

/* Price List Section */
.price-list-section {
    padding: 100px 0;
    background: white;
    min-height: 100vh;
}

.price-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.price-list-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.price-list-image {
    text-align: center;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.price-list-svg {
    width: 100%;
    height: auto;
    max-width: 800px;
    border-radius: 10px;
}

.price-list-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.price-list-info p {
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

.price-list-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 15px;
    padding: 2rem;
}

.price-list-notice h3 {
    color: #856404;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-list-notice h3 i {
    color: #f39c12;
}

.price-list-notice ul {
    list-style: none;
    padding: 0;
}

.price-list-notice li {
    padding: 0.5rem 0;
    color: #856404;
    position: relative;
    padding-left: 1.5rem;
}

.price-list-notice li::before {
    content: '•';
    color: #f39c12;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.price-list-contact {
    text-align: center;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
    align-items: start !important;
}

.contact-left .section-title {
    text-align: left !important;
    margin-bottom: 2rem !important;
}

.contact-left .section-title::after {
    left: 0 !important;
    transform: none !important;
}



.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #d4af37;
    margin-top: 0.5rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
}

.contact-map {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-map h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-map p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.map-container {
    margin: 1rem 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.btn-map {
    background: #4285f4;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-map:hover {
    background: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.3);
}

.contact-whatsapp h3 {
    margin-bottom: 1rem;
    color: #333;
}

.contact-whatsapp p {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #d4af37;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d4af37;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section i {
    margin-right: 0.5rem;
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }

    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {

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

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



/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .search-box {
        width: 220px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .dropdown-menu {
        width: 100%;
        left: -100%;
    }

    .logo-svg {
        height: 50px;
        max-width: 180px;
    }

    .search-box {
        width: 180px;
    }

    .nav-center {
        position: static;
        transform: none;
    }

    #search-input {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    #search-input::placeholder {
        font-size: 0.75rem;
    }

    .search-btn {
        width: 28px;
        height: 28px;
    }

    .search-suggestions {
        width: 280px;
        right: -40px;
    }

    .nav-container {
        flex-direction: row;
        height: 60px;
        padding: 0 15px;
        justify-content: space-between;
        align-items: center;
    }

    .menu-toggle {
        order: 0;
    }

    .nav-center {
        order: 1;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .search-container {
        order: 2;
    }

    .hero {
        height: 80vh;
        min-height: 500px;
    }

    .hero-content {
        padding: 1.5rem 1.2rem;
        margin: 0 auto;
        border-radius: 12px;
        max-width: 90%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-title::after {
        width: 60px;
        height: 2px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
        width: 100%;
        align-items: center;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .catalog-section,
    .products-section,
    .about-section,
    .contact-section,
    .price-list-section {
        padding: 60px 0;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .category-card {
        padding: 2rem 1.5rem;
    }

    .category-icon {
        width: 100px;
        height: 100px;
    }

    .category-svg {
        width: 80px;
        height: 80px;
    }

    .about-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .about-features {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 1rem !important;
    }

    .feature-item {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 140px;
        padding: 1rem 0.8rem;
    }

    .feature-item h4 {
        font-size: 0.85rem;
    }

    .feature-item p {
        font-size: 0.75rem;
    }

    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .contact-map {
        padding: 1.5rem;
    }

    .map-container iframe {
        height: 250px;
    }

    .products-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-detail-image {
        position: static;
    }

    .price-list-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .price-list-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .price-list-image {
        padding: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
}



@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .nav-container {
        padding: 0 10px;
        height: 55px;
    }

    .logo-svg {
        height: 45px;
        max-width: 160px;
    }

    .search-box {
        width: 150px;
    }

    .search-btn {
        width: 26px;
        height: 26px;
    }

    .search-suggestions {
        width: 250px;
        right: -50px;
        padding: 0.8rem;
    }

    .hero {
        height: 70vh;
        min-height: 450px;
    }

    .hero-content {
        padding: 1.2rem 1rem;
        margin: 0 auto;
        max-width: 95%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .hero-title::after {
        width: 50px;
        height: 2px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1.5rem;
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 220px;
        padding: 10px 20px;
        text-align: center;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .catalog-section,
    .products-section,
    .about-section,
    .contact-section,
    .price-list-section {
        padding: 40px 0;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .category-card {
        padding: 1.5rem 1rem;
    }

    .category-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }

    .category-svg {
        width: 60px;
        height: 60px;
    }

    .category-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .category-card p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .about-features {
        flex-direction: column !important;
        gap: 0.8rem !important;
    }

    .feature-item {
        flex: none !important;
        padding: 0.8rem;
    }

    .feature-item h4 {
        font-size: 0.85rem;
    }

    .feature-item p {
        font-size: 0.75rem;
    }

    .contact-map {
        padding: 1rem;
    }

    .map-container iframe {
        height: 200px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-card {
        margin: 0 auto;
        max-width: 320px;
    }

    .product-image {
        height: 250px;
    }

    .product-overlay {
        flex-direction: column;
        gap: 0.5rem;
    }

    .detail-btn,
    .order-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .product-detail-content {
        gap: 1.5rem;
    }

    .product-detail-specs {
        padding: 1.2rem;
    }

    .product-notice {
        padding: 1.2rem;
    }

    .product-notice h3 {
        font-size: 0.95rem;
    }

    .product-notice li {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }

    .btn-order {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    .price-list-content {
        gap: 1.5rem;
    }

    .price-list-image {
        padding: 0.8rem;
    }

    .price-list-notice {
        padding: 1.2rem;
    }

    .footer-content {
        gap: 1rem;
    }

    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .footer-section p,
    .footer-section li {
        font-size: 0.9rem;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .dropdown-content {
        padding: 1rem 0;
    }

    .dropdown-link {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        justify-content: flex-start;
        text-align: left;
    }

    .submenu-link {
        padding: 0.6rem 2rem;
        font-size: 0.85rem;
        justify-content: flex-start;
        text-align: left;
    }

    /* Touch-friendly improvements */
    .btn {
        min-height: 44px;
        padding: 10px 20px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
    }

    .search-btn {
        min-width: 32px;
        min-height: 32px;
    }

    .hero-slider-dot {
        width: 14px;
        height: 14px;
    }

    .suggestion-tag {
        padding: 0.4rem 0.8rem;
        min-height: 32px;
        display: flex;
        align-items: center;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .category-card {
        padding: 1.2rem 0.8rem;
    }

    .search-box {
        width: 130px;
    }

    .search-suggestions {
        width: 220px;
        right: -60px;
    }

    .logo-svg {
        height: 40px;
        max-width: 140px;
    }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        min-height: 400px;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 1rem;
        margin-top: 1rem;
    }

    .hero-buttons .btn {
        width: auto;
        max-width: none;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    .logo-svg,
    .category-svg {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

at {
    bottom: 20px;
    right: 20px;
}

.whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
}
}

/ * Additional Mobile Optimizations */
/* Smooth scrolling for all devices */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Improve touch targets */
@media (max-width: 768px) {

    .btn,
    .dropdown-link,
    .submenu-link,
    .category-card,
    .product-card,
    .hero-slider-dot {
        min-height: 44px;
        min-width: 44px;
    }

    /* Better tap highlighting */
    .btn,
    .category-card,
    .product-card,
    .dropdown-link {
        -webkit-tap-highlight-color: rgba(212, 175, 55, 0.3);
        tap-highlight-color: rgba(212, 175, 55, 0.3);
    }

    /* Prevent text selection on interactive elements */
    .btn,
    .category-card,
    .product-card,
    .menu-toggle,
    .hero-slider-dot {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    /* Improve form inputs on mobile */
    input[type="text"],
    input[type="search"] {
        font-size: 16px;
        /* Prevents zoom on iOS */
        -webkit-appearance: none;
        border-radius: 0;
    }

    /* Better focus states for accessibility */
    .btn:focus,
    .dropdown-link:focus,
    .menu-toggle:focus {
        outline: 2px solid #d4af37;
        outline-offset: 2px;
    }

    /* Optimize animations for mobile */
    .hero-slide,
    .product-card,
    .category-card {
        will-change: transform;
    }

    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }

        .hero-slide {
            transition: none !important;
        }
    }

    /* Dark mode support */
    @media (prefers-color-scheme: dark) {
        .search-box {
            background: #2d3748;
            color: white;
        }

        #search-input {
            color: white;
        }

        #search-input::placeholder {
            color: #a0aec0;
        }
    }
}

/* Print styles */
@media print {

    .header,
    .whatsapp-float,
    .hero-slider-nav,
    .dropdown-menu {
        display: none !important;
    }

    .hero {
        height: auto !important;
        page-break-after: always;
    }

    .section-title {
        page-break-after: avoid;
    }

    .product-card,
    .category-card {
        page-break-inside: avoid;
    }
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #d4af37;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Accessibility improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus management */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #d4af37;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        border: 2px solid #fff;
    }

    .btn-secondary {
        background: #fff;
        color: #000;
        border: 2px solid #000;
    }

    .hero-content {
        background: rgba(0, 0, 0, 0.8);
        border: 2px solid #fff;
    }
}