/* ==================== RESET & VARIABLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4a574;
    --secondary-color: #8b4513;
    --accent-color: #ff6b35;
    --dark-color: #2c1810;
    --light-color: #f8f4f0;
    --text-color: #333;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: bold;
    margin: 0;
    line-height: 1;
}

.logo span {
    color: var(--secondary-color);
    font-size: 0.3rem;
    font-style: italic;
    margin-top: 0.2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    display: block;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links .active {
    color: var(--primary-color);
}

.nav-links .active::after {
    width: 100%;
}

/* Search Form in Navbar */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
}

.search-form {
    display: flex;
    align-items: center;
    background: var(--light-color);
    border-radius: 25px;
    padding: 0.4rem 1rem;
    transition: var(--transition);
    min-width: 200px;
    max-width: 300px;
}

.search-form:focus-within {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.search-form input {
    border: none;
    background: transparent;
    outline: none;
    padding: 0.3rem 0.5rem;
    width: 180px;
    font-size: 0.95rem;
    flex: 1;
    min-width: 120px;
    max-width: 250px;
}

.search-form button {
    border: none;
    background: transparent;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.search-form button:hover {
    color: var(--secondary-color);
}

.burger {
    display: none;
    cursor: pointer;
    padding: 0.75rem 0;
    flex-direction: column;
    justify-content: center;
}

.burger div {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* ==================== HERO CAROUSEL ==================== */
.hero-section {
    position: relative;
    height: 100vh;
    margin-top: 70px;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .hero-section {
        height: 60vh; /* Reduced height on tablets */
        margin-top: 70px;
    }

    .carousel-content {
        padding: 1.5rem;
        margin: 1rem;
        background: rgba(0, 0, 0, 0.4); /* Slightly more opaque on tablets */
    }

    .carousel-content h2 {
        font-size: 2rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    }

    .carousel-content p {
        font-size: 1rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        height: 50vh; /* Further reduced height on mobile */
        margin-top: 60px; /* Slightly reduced margin for mobile nav */
    }

    .carousel-content {
        padding: 1rem;
        margin: 0.5rem;
        background: rgba(0, 0, 0, 0.5); /* More opaque on mobile for better readability */
    }

    .carousel-content h2 {
        font-size: 1.5rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .carousel-content p {
        font-size: 0.9rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    }
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.carousel-item:nth-child(1) {
    background: linear-gradient(135deg, #d4a574, #8b4513);
}

.carousel-item:nth-child(2) {
    background: linear-gradient(135deg, #ff6b35, #d4a574);
}

.carousel-item:nth-child(3) {
    background: linear-gradient(135deg, #8b4513, #ff6b35);
}

.carousel-item.active {
    opacity: 1;
}

.carousel-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    animation: slideUp 1s ease-out;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    margin: 2rem;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

/* ==================== ANIMATIONS UTILITY CLASSES ==================== */
.animate-slide-up { animation: slideUp 0.8s ease-out; }
.animate-slide-left { animation: slideInLeft 0.8s ease-out; }
.animate-slide-right { animation: slideInRight 0.8s ease-out; }
.animate-scale-in { animation: scaleIn 0.6s ease-out; }
.animate-bounce-in { animation: bounceIn 0.8s ease-out; }
.animate-float { animation: float 3s ease-in-out infinite; }

/* Staggered animations */
.animate-stagger-1 { animation-delay: 0.1s; }
.animate-stagger-2 { animation-delay: 0.2s; }
.animate-stagger-3 { animation-delay: 0.3s; }
.animate-stagger-4 { animation-delay: 0.4s; }
.animate-stagger-5 { animation-delay: 0.5s; }

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.carousel-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.carousel-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.carousel-content .btn {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease; /* Smooth transition for any future effects */
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-color);
    transition: width 0.4s ease, height 0.4s ease, top 0.4s ease, left 0.4s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 300%;
    height: 300%;
}

.btn-secondary:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 167, 116, 0.3);
}

/* ==================== MICRO-INTERACTIONS ==================== */
.btn:active {
    transform: translateY(0px) scale(0.98);
    transition: all 0.1s ease;
}

.product-card:active {
    transform: translateY(-10px) rotate(0.5deg) scale(0.98);
}

/* Focus states for accessibility */
.btn:focus,
.category-card:focus,
.product-card:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: var(--white);
    font-size: 2rem;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

/* ==================== CATEGORIES ==================== */
.categories {
    padding: 4rem 0;
    background: var(--light-color);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.category-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* ==================== ENHANCED INTERACTIONS ==================== */
.category-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.category-card:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.category-card:hover h3 {
    color: var(--accent-color);
}

/* ==================== LOADING STATES ==================== */
.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.category-card p {
    color: #666;
    font-size: 0.9rem;
}

/* ==================== PRODUCTS SECTION ==================== */
.products-section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: fadeIn 0.6s ease-out;
    position: relative;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.05) 0%, rgba(127, 90, 65, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-image::before {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
    padding: 1rem;
    z-index: 1;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-image i {
    font-size: 4rem;
    color: var(--white);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info h3 {
    color: var(--secondary-color);
    margin: 0.5rem 0;
    font-size: 1.2rem;
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.product-rating i {
    color: #FFD700;
    font-size: 0.9rem;
}

.product-rating .far {
    color: #ddd;
}

.rating-text {
    color: #666;
    font-size: 0.85rem;
    margin-left: 0.5rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.btn-secondary {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    background: var(--secondary-color);
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.features {
    list-style: none;
    margin-top: 2rem;
}

.features li {
    padding: 0.8rem 0;
    color: var(--text-color);
    font-size: 1.1rem;
}

.features i {
    color: var(--primary-color);
    margin-right: 10px;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.image-placeholder i {
    font-size: 6rem;
    color: var(--white);
    opacity: 0.7;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    padding: 5rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.info-card {
    text-align: center;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 15px;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #666;
}

.contact-form {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 165, 116, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 1.2rem;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-col p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(212, 165, 116, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 25px 0 0 25px;
}

.newsletter-form button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--secondary-color);
}

/* ==================== PARTNERS SECTION ==================== */
.partners-section {
    padding: 4rem 0;
    background: var(--light-color);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.partner-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.partner-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: var(--transition);
}

.partner-item:hover img {
    filter: grayscale(0%);
}

.partner-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* ==================== PAGE HEADER ==================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 6rem 0 4rem;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.page-header h1 i {
    margin-right: 1rem;
    opacity: 0.9;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ==================== BREADCRUMB ==================== */
.breadcrumb-wrapper {
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.95), rgba(139, 69, 19, 0.95)),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="rgba(255,255,255,0.03)" width="50" height="50"/><rect fill="rgba(255,255,255,0.03)" x="50" y="50" width="50" height="50"/></svg>');
    background-size: cover, 20px 20px;
    background-position: center, center;
    padding: 1.5rem 0;
    margin-top: 80px;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.breadcrumb-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="400" viewBox="0 0 800 800"><g fill="none" stroke="rgba(255,255,255,0.08)" stroke-width="1"><path d="M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63"/><path d="M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764"/><path d="M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880"/><path d="M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382"/><path d="M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269"/></g></svg>');
    background-size: cover;
    opacity: 0.4;
    pointer-events: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
}

.breadcrumb a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.breadcrumb span:not(.current) {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb .current {
    color: var(--white);
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
}

.breadcrumb i {
    font-size: 0.9rem;
}

/* ==================== PRODUCTS PAGE ==================== */
.products-page {
    padding: 4rem 0;
    background: var(--light-color);
}

.products-filters {
    margin-bottom: 3rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.filter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.search-box {
    display: flex;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 50px;
    overflow: hidden;
}

.search-box input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    outline: none;
    font-size: 1rem;
}

.search-box button {
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
}

.search-box button:hover {
    background: var(--secondary-color);
}

.category-filter select {
    padding: 1rem 2rem;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    outline: none;
    cursor: pointer;
    background: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.category-filter select:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.no-products {
    text-align: center;
    padding: 4rem 2rem;
}

.no-products i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.no-products h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.no-products p {
    color: #999;
    margin-bottom: 2rem;
}

/* ==================== PARTNERS PAGE ==================== */
.partners-page {
    padding: 4rem 0;
}

.partners-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.partner-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.partner-logo {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-info h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.partner-info p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ==================== BLOG PAGE ==================== */
.blog-page {
    padding: 4rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #999;
}

.blog-meta i {
    margin-right: 0.3rem;
    color: var(--primary-color);
}

.blog-content h2 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.blog-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 4rem 0;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .btn {
    margin: 0 0.5rem;
}

/* ==================== NO CONTENT ==================== */
.no-content {
    text-align: center;
    padding: 4rem 2rem;
}

.no-content i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.no-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.no-content p {
    color: #999;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* ==================== MODAL ==================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--white);
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 10;
}

.modal-header h2 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    background: var(--light-color);
    color: var(--danger);
}

.modal-body {
    padding: 1.5rem;
}

.modal-content.modal-large {
    max-width: 1000px;
}

/* Product Detail Modal */
.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-gallery {
    position: relative;
}

.gallery-main {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: var(--light-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-main.no-image {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.gallery-main.no-image i {
    font-size: 5rem;
    color: white;
    opacity: 0.5;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.5rem;
}

.thumbnail {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    cursor: pointer;
    object-fit: cover;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumbnail:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: var(--primary-color);
}

.product-category-badge {
    display: inline-block;
    background: var(--light-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.product-rating-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-rating-detail .stars {
    display: flex;
    gap: 0.2rem;
}

.product-rating-detail .stars i {
    color: #FFD700;
    font-size: 1.2rem;
}

.product-rating-detail .stars .far {
    color: #ddd;
}

.product-rating-detail .rating-value {
    font-weight: bold;
    color: var(--text-color);
    font-size: 1.2rem;
}

.product-rating-detail .rating-count {
    color: #666;
    font-size: 0.9rem;
}

.product-description-detail {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.product-colors {
    margin-bottom: 1.5rem;
}

.product-colors h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
    transition: var(--transition);
}

.color-option:hover:not(.out-of-stock) {
    transform: translateY(-3px);
}

.color-option.out-of-stock {
    opacity: 0.5;
    cursor: not-allowed;
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.color-option span {
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 500;
}

.color-option small {
    font-size: 0.75rem;
    color: #999;
}

.color-option .stock-label {
    color: #ff6b6b;
    font-weight: 600;
}

.product-price-box {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-label {
    color: #666;
    font-size: 0.9rem;
}

.price-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-whatsapp {
    background: #25D366 !important;
    color: white;
}

.btn-whatsapp:hover {
    background: #20BD5A !important;
    transform: translateY(-2px);
}

.product-info-box {
    background: #f0f9ff;
    border: 1px solid #bae6ff;
    padding: 1rem;
    border-radius: 8px;
}

.product-info-box p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
    color: #0369a1;
    font-size: 0.9rem;
}

.product-info-box i {
    color: #0284c7;
}

.product-reviews {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-color);
}

.product-reviews h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.review-header strong {
    color: var(--text-color);
    font-size: 1rem;
}

.review-stars {
    display: flex;
    gap: 0.2rem;
}

.review-stars i {
    color: #FFD700;
    font-size: 0.9rem;
}

.review-stars .far {
    color: #ddd;
}

.review-comment {
    color: #666;
    line-height: 1.6;
    margin: 0.5rem 0;
}

.review-date {
    color: #999;
    font-size: 0.85rem;
}

/* ==================== RESPONSIVE ==================== */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-links li {
        margin: 0.5rem 0;
    }

    .nav-links a {
        padding: 1rem 0;
        font-size: 1.1rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-actions {
        display: flex !important;
        margin-left: auto;
    }

    .search-form {
        min-width: 150px;
        max-width: 200px;
    }

    .search-form input {
        width: 120px;
        min-width: 80px;
        max-width: 150px;
    }

    .burger {
        display: block;
    }

    .burger.active .line1 {
        transform: rotate(-45deg) translate(-5px, 5px);
    }

    .burger.active .line2 {
        opacity: 0;
    }

    .burger.active .line3 {
        transform: rotate(45deg) translate(-5px, -5px);
    }

    .search-form {
        min-width: 150px;
        max-width: 200px;
    }

    .search-form input {
        width: 120px;
        min-width: 80px;
        max-width: 150px;
    }

    .carousel-content h2 {
        font-size: 2rem;
    }

    .carousel-content p {
        font-size: 1rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .category-grid {
        grid-template-columns: 1fr 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-thumbnails {
        grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    }

    .product-actions {
        position: sticky;
        bottom: 0;
        background: white;
        padding: 1rem;
        margin: 0 -1.5rem -1.5rem;
        border-top: 1px solid #eee;
    }

    .main-image {
        height: 350px; /* Smaller height for mobile */
    }
}

@media screen and (max-width: 480px) {
    .search-form {
        min-width: 100px;
        max-width: 120px;
        padding: 0.3rem 0.6rem;
    }

    .search-form input {
        width: 60px;
        min-width: 50px;
        max-width: 80px;
        font-size: 0.8rem;
        padding: 0.2rem 0.3rem;
    }

    .search-form button {
        font-size: 0.9rem;
        padding: 0.1rem;
    }

    .burger {
        padding: 1rem 0;
    }

    .carousel-content h2 {
        font-size: 1.5rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .carousel-btn {
        padding: 0.5rem 1rem;
        font-size: 1.5rem;
    }
}

/* ==================== PRODUCT DETAIL PAGE ==================== */
.product-detail-section {
    padding: 3rem 0;
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 90px;
}

.main-image-wrapper {
    margin-bottom: 1rem;
}

.main-image {
    position: relative;
    width: 100%;
    height: 500px; /* Fixed height to prevent huge images */
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    cursor: zoom-in;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.main-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
    padding: 0; /* Removed padding to maximize image size within container */
}

.main-image:hover img {
    transform: scale(1.02);
}

.product-badge-detail {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.image-zoom-hint {
    text-align: center;
    color: #999;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.image-zoom-hint i {
    color: var(--primary-color);
}

.image-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 0.75rem;
}

.thumbnail-wrapper {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
}

.thumbnail-wrapper:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.thumbnail {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 0.5rem;
    background: white;
}

.thumbnail-wrapper:has(.thumbnail.active) {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.stock-badge.in-stock {
    background: #d4edda;
    color: #155724;
}

.stock-badge.out-of-stock {
    background: #f8d7da;
    color: #721c24;
}

.product-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin: 0;
    line-height: 1.2;
    font-weight: 700;
}

.product-rating-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-rating-large .stars {
    display: flex;
    gap: 0.3rem;
    font-size: 1.3rem;
}

.product-rating-large .fa-star {
    color: #ffc107;
}

.rating-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-color);
}

.rating-count {
    color: #666;
    font-size: 0.95rem;
}

.price-section {
    background: #f8f9fa;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 1px solid #eee;
    color: var(--dark-color);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-price-large {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    color: var(--dark-color);
    letter-spacing: -1px;
}

.product-price-large .currency {
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.6;
    color: var(--text-color);
}

.price-note {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Improved Guarantees */
.product-guarantees {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.guarantee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    padding: 0.5rem;
}

.guarantee-icon {
    width: 45px;
    height: 45px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.guarantee-text strong {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    color: var(--dark-color);
}

.guarantee-text span {
    font-size: 0.8rem;
    color: var(--text-color);
    line-height: 1.3;
}

/* Better Description Box */
.product-description-box {
    background: transparent;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}

.product-description-box h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-description-box p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Mobile Adjustments for Overrides */
@media screen and (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-gallery {
        position: static;
    }

    .product-price-large {
        font-size: 2.5rem;
    }

    .product-guarantees {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: left;
    }

    .guarantee-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }

    .product-actions-section {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-order {
        width: 100%;
    }
}/* ==================== SIMILAR PRODUCTS SECTION ==================== */
.similar-products-section {
    padding: 5rem 0;
    background: #f8f9fa;
    margin-top: 4rem;
}

.similar-products-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.2rem;
    color: var(--dark-color);
    font-weight: 700;
}

/* ==================== ABOUT PAGE STYLES ==================== */

.about-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8rem 0 6rem;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.about-hero-content .lead {
    font-size: 1.4rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.about-story {
    padding: 6rem 0;
    background: #f8f9fa;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image {
    position: relative;
}

.story-image .image-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--light-color), #e9ecef);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.story-content h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.story-content strong {
    color: var(--dark-color);
}

/* ==================== SEARCH PAGE STYLES ==================== */

.search-section {
    padding: 4rem 0 2rem;
}

.search-header {
    text-align: center;
    margin-bottom: 3rem;
}

.search-header h1 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.search-results-count {
    color: var(--text-color);
    font-size: 1.1rem;
}

.search-filters {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.filter-group input,
.filter-group select {
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.search-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.search-empty h2 {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.search-empty p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.search-empty .btn {
    margin: 0 auto;
}

/* ==================== RESPONSIVE IMPROVEMENTS ==================== */

@media screen and (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .story-image .image-placeholder {
        height: 300px;
    }

    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .about-hero-content .lead {
        font-size: 1.2rem;
    }

    .filters-grid {
        grid-template-columns: 1fr;
    }

    .search-header h1 {
        font-size: 2rem;
    }
}

/* ==================== GLOBAL DESIGN ENHANCEMENTS ==================== */

/* Better Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

/* Enhanced Cards */
.product-card,
.info-card,
.about-content > div {
    background: white;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.product-card:hover,
.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Better Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    line-height: 1.7;
    color: var(--text-color);
}

/* Improved Sections */
section {
    padding: 5rem 0;
}

section:nth-child(even) {
    background: #f8f9fa;
}

/* Better Form Styles */
input, textarea, select {
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

/* Loading Animation */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.loading {
    animation: pulse 1.5s infinite;
}

/* Product Actions Section */
.product-actions-section {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
}

.btn-order {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #25d366;
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-order:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-order i {
    font-size: 1.5rem;
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

.btn-title {
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
}

.btn-share {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--light-color);
    color: var(--primary-color);
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.btn-share:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Enhanced Product Info Layout */
.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

/* Product Colors Section */
.product-colors-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==================== LARGE SCREENS ==================== */
@media screen and (min-width: 1200px) {
    .navbar .container {
        padding: 1rem 50px;
    }

    .nav-links {
        gap: 3rem;
    }
}

