:root {
    --primary: #ff6f3c;
    --secondary: #155263;
    --dark: #111111;
    --white: #ffffff;
    --gray: #777777;
    --light: #f7f7f7;
    --border-gray: #d3d3d3;
    --ease-expo-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s var(--ease-smooth);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 111, 60, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s var(--ease-smooth);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-secondary:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(21, 82, 99, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--dark);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 500;
    border: 2px solid var(--dark);
    transition: all 0.3s var(--ease-smooth);
    cursor: pointer;
    font-size: 16px;
}

.btn-outline:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-3px);
}

/* Section Styles */
.section-subtitle {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(28px, 5vw, 42px);
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s var(--ease-smooth);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
}

.logo-text span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s var(--ease-expo-out);
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-btn {
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.cart-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle {
    display: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--light);
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.menu-toggle:hover {
    background: var(--primary);
    color: var(--white);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 50%, transparent 100%);
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 60px 0;
}

.hero-title {
    font-size: clamp(36px, 6vw, 56px);
    line-height: 1.15;
    margin-bottom: 25px;
    animation: fadeInUp 1s var(--ease-expo-out) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-title span {
    color: var(--primary);
}

.hero-text {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.8;
    animation: fadeInUp 1s 0.2s var(--ease-expo-out) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 1s 0.4s var(--ease-expo-out) forwards;
    opacity: 0;
    transform: translateY(30px);
}

.floating-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: var(--primary);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    top: 40%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 40px;
    height: 40px;
    background: var(--primary);
    bottom: 30%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s var(--ease-smooth);
    border-left: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border-left-color: var(--primary);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 111, 60, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 25px;
    transition: all 0.5s;
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(360deg);
}

.feature-title {
    font-size: 22px;
    margin-bottom: 12px;
}

.feature-text {
    color: var(--gray);
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-frame {
    position: absolute;
    inset: -15px;
    border: 3px solid var(--primary);
    border-radius: 24px;
    transform: rotate(3deg);
    transition: transform 0.5s;
}

.about-image:hover .about-image-frame {
    transform: rotate(0deg);
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    width: 100%;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(255, 111, 60, 0.3);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.about-badge-number {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.about-badge-text {
    font-size: 14px;
    opacity: 0.9;
}

.about-content {
    padding-left: 20px;
}

.about-text {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin: 35px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--primary);
    font-weight: 700;
}

.stat-label {
    font-size: 14px;
    color: var(--gray);
}

/* Categories Section */
.categories {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s var(--ease-smooth);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.category-image {
    aspect-ratio: 4/5;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-expo-out);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
}

.category-name {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 5px;
}

.category-count {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 10px;
}


/* Products Section */
.products {
    padding: 100px 0;
    background: var(--light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s var(--ease-smooth);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.product-image {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s var(--ease-expo-out);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.add-to-cart {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--white);
    padding: 12px;
    border-radius: 12px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-expo-out);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-card:hover .add-to-cart {
    opacity: 1;
    transform: translateY(0);
}

.add-to-cart:hover {
    background: var(--secondary);
}

.product-info {
    padding: 20px;
}

.product-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 10px;
}

.product-rating i {
    color: #ffc107;
    font-size: 14px;
}

.product-rating i.empty {
    color: var(--border-gray);
}

.product-name {
    font-size: 18px;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.product-card:hover .product-name {
    color: var(--primary);
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--primary);
    font-weight: 700;
}

.view-all {
    text-align: center;
    margin-top: 50px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-icon {
    font-size: 80px;
    color: var(--primary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: -20px;
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 3vw, 28px);
    line-height: 1.6;
    color: var(--dark);
    margin-bottom: 40px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 4px solid rgba(255, 111, 60, 0.2);
}

.author-name {
    font-size: 20px;
    margin-bottom: 5px;
}

.author-role {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-gray);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--secondary);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 111, 60, 0.1) 0%, transparent 50%);
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 10%;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-content {
    color: var(--white);
}

.cta-subtitle {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.cta-title {
    font-size: clamp(32px, 4vw, 46px);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.8;
}

.promo-code {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 16px;
    display: inline-block;
    margin-bottom: 30px;
}

.promo-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.promo-value {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 3px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(255, 111, 60, 0.3);
    }

    50% {
        text-shadow: 0 0 30px rgba(255, 111, 60, 0.6);
    }
}

.cta-image {
    position: relative;
}

.cta-image img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s var(--ease-smooth);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.blog-image {
    aspect-ratio: 4/3;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-expo-out);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-category {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s;
}

.blog-card:hover .blog-title {
    color: var(--primary);
}

.blog-excerpt {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.3s;
}

.blog-card:hover .blog-link {
    color: var(--primary);
    gap: 12px;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.newsletter-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.newsletter-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 8s ease-in-out infinite;
}

.newsletter-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    color: var(--white);
    font-size: clamp(26px, 4vw, 36px);
    margin-bottom: 15px;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    min-width: 280px;
    padding: 16px 25px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.25);
}

.newsletter-btn {
    padding: 16px 35px;
    border-radius: 50px;
    border: none;
    background: var(--white);
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-btn:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-text {
    color: var(--gray);
    line-height: 1.8;
    font-size: 15px;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-links a:hover::before {
    width: 10px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-5px) rotate(360deg);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--gray);
    font-size: 15px;
}

.contact-info i {
    color: var(--primary);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: var(--gray);
    font-size: 14px;
}

.payment-methods {
    display: flex;
    gap: 15px;
}

.payment-icon {
    width: 45px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--gray);
}

/* Mobile Navigation */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--white);
    z-index: 1001;
    padding: 100px 30px 30px;
    transition: right 0.4s var(--ease-expo-out);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    margin-bottom: 5px;
}

.mobile-nav-links a {
    display: block;
    padding: 15px 20px;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s;
}

.mobile-nav-links a:hover {
    background: var(--light);
    color: var(--primary);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-menu-close:hover {
    background: var(--primary);
    color: var(--white);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(255, 111, 60, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-expo-out);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content {
        padding-left: 0;
        order: -1;
    }

    .cta-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-image {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .features-grid,
    .categories-grid,
    .products-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .newsletter-input {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 26px;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 12px 24px;
        font-size: 14px;
    }

    .about-badge {
        padding: 15px 20px;
        bottom: -10px;
        right: -10px;
    }

    .about-badge-number {
        font-size: 28px;
    }

    .stat-number {
        font-size: 28px;
    }

    .about-stats {
        gap: 25px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/* Selection */
::selection {
    background: rgba(255, 111, 60, 0.3);
}






:root {
    --primary: #ff6f3c;
    --secondary: #155263;
    --dark: #111111;
    --white: #ffffff;
    --gray: #777777;
    --light: #f7f7f7;
    --border-gray: #e0e0e0;
    --ease-expo-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s var(--ease-smooth);
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 111, 60, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    border: 2px solid var(--primary);
    transition: all 0.3s var(--ease-smooth);
    cursor: pointer;
    font-size: 14px;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
}

.logo-text span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
    font-size: 15px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s var(--ease-expo-out);
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-btn,
.search-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    position: relative;
}

.cart-btn:hover,
.search-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--light);
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.menu-toggle:hover {
    background: var(--primary);
    color: var(--white);
}

/* Breadcrumb */
.breadcrumb {
    background: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-gray);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    font-size: 14px;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-list a {
    color: var(--gray);
    transition: color 0.3s;
}

.breadcrumb-list a:hover {
    color: var(--primary);
}

.breadcrumb-list li:last-child {
    color: var(--primary);
    font-weight: 500;
}

.breadcrumb-list i {
    font-size: 12px;
    color: var(--gray);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, #0d3a47 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    background-size: 100px;
    opacity: 0.5;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.page-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 10px;
}

.page-subtitle {
    opacity: 0.8;
    font-size: 16px;
}

/* Main Layout */
.main-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    padding: 40px 0;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 90px;
    height: fit-content;
}

.sidebar-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-bottom: 20px;
}

.sidebar-header {
    padding: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #e85a28 100%);
    color: var(--white);
}

.sidebar-title {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-body {
    padding: 15px;
}

.category-list {
    list-style: none;
}

.category-item {
    border-bottom: 1px solid var(--light);
}

.category-item:last-child {
    border-bottom: none;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 12px;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 14px;
}

.category-link:hover,
.category-link.active {
    background: rgba(255, 111, 60, 0.1);
    color: var(--primary);
}

.category-link.active {
    font-weight: 600;
}

.category-link i {
    font-size: 12px;
    opacity: 0.5;
}

.category-count {
    background: var(--light);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    color: var(--gray);
}

.category-link:hover .category-count,
.category-link.active .category-count {
    background: var(--primary);
    color: var(--white);
}

/*

.category-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s var(--ease-expo-out);
}

.category-card:hover .category-link {
    opacity: 1;
    transform: translateY(0);
}*/

/* Filter Section */
.filter-section {
    padding: 20px;
    border-bottom: 1px solid var(--light);
}

.filter-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--gray);
    transition: color 0.3s;
}

.filter-option:hover {
    color: var(--primary);
}

.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

/* Product Grid Section */
.products-section {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 25px;
}

.products-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.products-count {
    font-size: 14px;
    color: var(--gray);
}

.products-count strong {
    color: var(--dark);
}

.products-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sort-select {
    padding: 10px 15px;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    background: var(--white);
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s;
}

.sort-select:focus {
    border-color: var(--primary);
}

.view-toggle {
    display: flex;
    gap: 5px;
}

.view-btn {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.view-btn:hover,
.view-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-gray);
    transition: all 0.4s var(--ease-smooth);
}

.product-card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.product-image {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s var(--ease-expo-out);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-badge.new {
    background: #22c55e;
}

.product-badge.bestseller {
    background: #8b5cf6;
}

.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s var(--ease-expo-out);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    font-size: 14px;
}

.action-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.product-info {
    padding: 18px;
}

.product-category {
    font-size: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.product-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 44px;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.product-price .original {
    font-size: 14px;
    color: var(--gray);
    text-decoration: line-through;
    margin-left: 8px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-rating i {
    font-size: 12px;
    color: #ffc107;
}

.product-rating span {
    font-size: 12px;
    color: var(--gray);
    margin-left: 4px;
}

.product-footer {
    display: flex;
    gap: 10px;
}

.product-footer .btn-primary {
    flex: 1;
}

.product-footer .btn-outline {
    padding: 10px 15px;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-gray);
}

.page-btn {
    min-width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-gray);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.page-btn:hover,
.page-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.page-btn.disabled {
    background-color: #cccccc;
    /* Example: light gray background */
    color: #666666;
    /* Example: darker gray text */
    cursor: not-allowed;
    /* Example: "not allowed" cursor on hover */
    opacity: 0.6;
    /* Example: reduced opacity */
}

/* Mobile Filter Toggle */
.mobile-filter-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-text {
    color: var(--gray);
    line-height: 1.8;
    font-size: 14px;
    margin-top: 15px;
}

.footer-title {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray);
    font-size: 14px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--gray);
    font-size: 14px;
}

.contact-info i {
    color: var(--primary);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    color: var(--gray);
    font-size: 13px;
}

/* Mobile Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    z-index: 1000;
    overflow-y: auto;
    transition: left 0.4s var(--ease-expo-out);
}

.mobile-sidebar.active {
    left: 0;
}

.mobile-sidebar-header {
    padding: 20px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-sidebar-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
    z-index: 998;
    box-shadow: 0 5px 20px rgba(255, 111, 60, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s var(--ease-expo-out) forwards;
}

/* Responsive */
@media (max-width: 1024px) {
    .main-layout {
        grid-template-columns: 240px 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .main-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: none;
    }

    .mobile-filter-toggle {
        display: inline-flex;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .products-section {
        padding: 15px;
    }

    .products-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 40px 0;
    }

    .product-footer {
        flex-direction: column;
    }

    .product-footer .btn-outline {
        width: 100%;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

::selection {
    background: rgba(255, 111, 60, 0.3);
}

:disabled {
    background-color: #cccccc;
    /* Example: light gray background */
    color: #666666;
    /* Example: darker gray text */
    cursor: not-allowed;
    /* Example: "not allowed" cursor on hover */
    opacity: 0.6;
    /* Example: reduced opacity */
}

/* =========================================
/* =========================================
   Product Details Page Styles (Refined Luxury)
   ========================================= */

/* Breadcrumb */
.breadcrumb {
    background: linear-gradient(to right, #f9f9f9, var(--white));
    padding: 15px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    flex-wrap: wrap;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-list a {
    color: #888;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 4px;
}

.breadcrumb-list a:hover {
    color: var(--primary);
    background: rgba(255, 111, 60, 0.05);
}

.breadcrumb-list li:last-child {
    color: var(--dark);
    font-weight: 600;
    background: rgba(0, 0, 0, 0.03);
    padding: 4px 10px;
    border-radius: 4px;
}

.breadcrumb-list i.fa-chevron-right {
    font-size: 10px;
    color: #ccc;
    margin: 0 4px;
}

.breadcrumb-home-icon {
    font-size: 14px;
}

/* Product Details Layout */
.product-details {
    padding-bottom: 80px;
}

.product-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

/* Image Gallery */
.image-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    /*background: var(--white);*/
    border-radius: 4px;
    /* More minimal radius */
    padding: 0;
    /*margin-bottom: 20px;*/
    position: relative;
    aspect-ratio: 1;
    display: flex;
    /*align-items: center;*/
    justify-content: center;
    overflow: hidden;
}

.main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.5s var(--ease-expo-out);
}

.main-image img:hover {
    transform: scale(1.08);
    /* Smoother zoom */
}

.badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 111, 60, 0.9);
    /* Slight transparency */
    color: var(--white);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
}

.badge.success {
    background: rgba(34, 197, 94, 0.9);
}

.image-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--dark);
}

.icon-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 111, 60, 0.3);
    border-color: transparent;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail {
    aspect-ratio: 1;
    background: var(--light);
    border-radius: 4px;
    /* Consistent minimal radius */
    padding: 8px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
    border-color: var(--primary);
    background: var(--white);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    /* Better blending with background */
}

/* Product Info */
.product-info {
    padding-top: 10px;
}

.category-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.category-badge {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-badge.outline {
    border: 1px solid rgba(255, 111, 60, 0.5);
    color: var(--primary);
    background: rgba(255, 111, 60, 0.05);
}

.category-badge.solid {
    background: var(--primary);
    color: var(--white);
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    color: var(--dark);
}

.rating-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffc107;
    font-size: 14px;
}

.rating-number {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
    margin-left: 5px;
}

.reviews-count {
    color: var(--gray);
    font-size: 14px;
    text-decoration: underline;
    text-decoration-color: rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.price-card {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.current-price {
    font-size: 36px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--secondary);
    /* Darker, richer color for price */
}

.original-price {
    font-size: 20px;
    color: var(--gray);
    text-decoration: line-through;
    opacity: 0.7;
}

.discount-badge {
    background: #ffebe5;
    /* Very light primary tint */
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.tax-info {
    display: block;
    margin-top: 8px;
    color: var(--gray);
    font-size: 13px;
}

/* Description */
.details-section-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark);
    margin-bottom: 15px;
}

.description-text {
    color: #555;
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 30px;
}

.divider {
    height: 1px;
    background: linear-gradient(to right, #eee, transparent);
    margin: 40px 0;
}

/* Color Selection */
.color-section {
    margin-bottom: 35px;
}

.selected-color {
    color: var(--dark);
    font-weight: 600;
    margin-left: 5px;
}

.color-options {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.color-option {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s;
}

.color-option::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all 0.3s;
}

.color-option:hover::after,
.color-option.active::after {
    border-color: var(--dark);
}

/* Quantity & Actions */
.quantity-section {
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 50px;
    padding: 5px;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--dark);
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.quantity-btn:hover {
    transform: scale(1.1);
}

.quantity-value {
    width: 40px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

.stock-info {
    font-size: 13px;
    color: #22c55e;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.stock-info::before {
    content: '';
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
}

.action-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.action-buttons .btn-primary {
    flex: 2;
    padding: 18px 40px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    /* Match gallery */
    background: linear-gradient(135deg, var(--primary) 0%, #ff8f6b 100%);
    box-shadow: 0 10px 25px rgba(255, 111, 60, 0.25);
}

.action-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 111, 60, 0.35);
}

.action-buttons .btn-outline {
    flex: 1;
    border-color: #ddd;
    color: var(--dark);
    border-radius: 4px;
}

.action-buttons .btn-outline:hover {
    border-color: var(--dark);
    background: transparent;
}

/* Features Grid */
.features-grid {
    display: grid;
    gap: 20px;
    padding: 30px;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid #eee;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.feature-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}

/* Tabs */
.product-tabs {
    background: transparent;
    box-shadow: none;
    border: none;
    margin-bottom: 80px;
    border-top: 1px solid #eee;
}

.tab-headers {
    justify-content: center;
    border-bottom: none;
    gap: 40px;
    padding: 20px 0;
}

.tab-header {
    padding: 10px 0;
    font-size: 16px;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
    color: #999;
    border-bottom: none;
    position: relative;
    font-weight: 600;
}

.tab-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.tab-header.active {
    color: var(--dark);
}

.tab-header.active::after {
    width: 100%;
}

.tab-content {
    padding: 40px 0;
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

/* Specs Table */
.specs-table {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.spec-row {
    background: transparent;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    border-radius: 0;
}

.spec-row:hover {
    background: transparent;
}

.spec-label {
    min-width: 150px;
    color: var(--dark);
}

/* Reviews */
.rating-summary {
    background: var(--white);
    border: 1px solid #eee;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.details-section-header h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
    }

    .price-card {
        flex-wrap: wrap;
    }


    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   About Page Styles
   ========================================= */

.about-page-header {
    padding: 80px 0 40px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 111, 60, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    margin-bottom: 60px;
}

.about-title {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--dark);
}

.about-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Story Section */
.story-section {
    padding: 60px 0;
    margin-bottom: 80px;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--dark);
    position: relative;
    padding-bottom: 20px;
}

.story-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.story-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.story-image {
    position: relative;
}

.story-image img {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 8px;
    z-index: -1;
    opacity: 0.3;
}

/* Values Section */
.values-section {
    background: var(--dark);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.value-quote {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.value-desc {
    font-size: 18px;
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.value-signature {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-style: italic;
    color: var(--primary);
}

/* Testimonial/Team Grid */
.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.feature-box {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #eee;
    text-align: center;
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 111, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    margin: 0 auto 20px;
}

.feature-box h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--gray);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .features-grid-3 {
        grid-template-columns: 1fr;
    }

    .about-title {
        font-size: 36px;
    }

    .value-quote {
        font-size: 32px;
    }
}

/* =========================================
   Contact Page Styles
   ========================================= */

.contact-page-header {
    padding: 80px 0 40px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 111, 60, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    margin-bottom: 60px;
}

.contact-title {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--dark);
}

.contact-subtitle {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.contact-section {
    padding-bottom: 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

/* Info Card (Left Column) */
.contact-info-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.map-container {
    height: 300px;
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.info-content {
    padding: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 111, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.info-text h5 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    /* Override Playfair for small headers */
    font-weight: 600;
}

.info-text p,
.info-text a {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

.social-links {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Form (Right Column) */
.contact-form-container {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    transition: all 0.3s;
    background: #fbfbfb;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 4px 15px rgba(255, 111, 60, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info-card {
        position: static;
        order: 2;
    }

    .contact-form-container {
        padding: 30px;
    }
}