@import url('https://fonts.googleapis.com/css2?family=Anek+Bangla:wght@300;400;500;600;700;800&family=Noto+Serif+Bengali:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* PET WORLD - Thai Luxury Boutique Resort Aesthetic Redesign */

:root {
    --primary: #8A5E40; /* Teak Medium */
    --primary-hover: #4A3325; /* Teak Dark */
    --primary-light: rgba(138, 94, 64, 0.06);
    --secondary: #3C5B43; /* Tropical Foliage Green */
    --secondary-hover: #2D4733;
    --secondary-light: rgba(60, 91, 67, 0.08);
    --bg: #FAF6F0; /* Warm Cream Sand */
    --card-bg: #FCFAF7; /* Light Sand/Alabaster */
    --text: #24211F; /* Warm Deep Charcoal */
    --text-muted: #7A7570; /* Muted Sand Gray */
    --gold: #C5A059; /* Champagne Resort Gold */
    --gold-light: rgba(197, 160, 89, 0.08);
    --white: #FFFFFF;
    --glass: rgba(253, 251, 247, 0.45);
    --glass-border: rgba(74, 51, 37, 0.06);
    --shadow-sm: 0 4px 20px rgba(74, 51, 37, 0.02);
    --shadow-md: 0 16px 36px rgba(74, 51, 37, 0.04);
    --shadow-lg: 0 30px 60px rgba(74, 51, 37, 0.06);
    --font-heading: 'Noto Serif Bengali', 'Cormorant Garamond', serif;
    --font-body: 'Anek Bangla', 'Plus Jakarta Sans', sans-serif;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: clip;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

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

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

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

/* Custom Cursor - Elegant Gold */
.custom-cursor {
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.custom-cursor-follower {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.08s ease-out;
}

@media (max-width: 1024px) {
    .custom-cursor, .custom-cursor-follower {
        display: none !important;
    }
}

/* Spacing Utilities */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography styling - Resort editorial */
.section-header {
    margin-bottom: 5rem;
}

.section-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1.15;
    color: var(--primary-hover);
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

/* Subpage Headers */
.page-header {
    padding-top: 170px;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(74, 51, 37, 0.04);
}

.page-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.1;
    color: var(--primary-hover);
    margin-top: 0.5rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.75rem;
    }
}

/* Buttons - Warm Handcrafted Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.1rem 2.4rem;
    border-radius: 30px; /* soft rectangle rather than fully round */
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(138, 94, 64, 0.12);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(74, 51, 37, 0.22);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-hover);
    border: 1px solid rgba(74, 51, 37, 0.15);
}

.btn-secondary:hover {
    background-color: rgba(74, 51, 37, 0.02);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 1.25rem 0;
    background-color: rgba(250, 246, 240, 0.85); /* Cream sand glass */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(74, 51, 37, 0.04);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5rem;
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 2rem;
    }
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--primary-hover);
}

.nav-logo span {
    color: var(--gold);
    font-weight: 300;
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-action-btn {
    color: var(--primary-hover);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.nav-action-btn:hover {
    background-color: rgba(74, 51, 37, 0.04);
}

.cart-btn .cart-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    background-color: var(--secondary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-menu-toggle {
    display: none;
    color: var(--primary-hover);
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg);
    border-bottom: 1px solid rgba(74, 51, 37, 0.05);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.mobile-nav-links a {
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .mobile-dropdown.active {
        display: block;
    }
}

/* Hero Section - Tropical Zen Layout */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    background-color: var(--bg);
    overflow: hidden;
}

.hero-bg-text {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 14vw;
    font-weight: 600;
    line-height: 1;
    color: rgba(74, 51, 37, 0.02);
    letter-spacing: -0.01em;
    pointer-events: none;
    white-space: nowrap;
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    align-items: center;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
        padding-bottom: 5rem;
    }
    .hero-right {
        grid-column: 1 / -1;
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        padding: 0 2rem;
        text-align: center;
    }
    .hero-ctas {
        justify-content: center;
    }
    .hero-right {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .hero-left {
        align-items: center;
    }
}

.hero-tagline {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.75rem;
    font-weight: 400;
    line-height: 1.1;
    color: var(--primary-hover);
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--secondary);
    font-style: italic;
}

@media (max-width: 1440px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 480px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 1.25rem;
}

/* Center Image Layering */
.hero-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.pets-image-wrapper {
    position: relative;
    z-index: 5;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--white);
    background-color: var(--white);
    transform: scale(1.05);
    animation: petsReveal 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-pets-img {
    transition: transform 0.6s ease-out;
}

.hero-pets-img:hover {
    transform: scale(1.03);
}

@keyframes petsReveal {
    0% {
        opacity: 0;
        transform: scale(0.98) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1.05) translateY(0);
    }
}

/* Floating Resort Badges */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-end;
}

.floating-card {
    background-color: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1.25rem 1.75rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 1.25rem;
    width: 290px;
    transition: var(--transition);
    animation: floatEffect 6s ease-in-out infinite alternate;
}

.floating-card:hover {
    background-color: rgba(253, 251, 247, 0.7);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.badge-delivery {
    animation-delay: -3s;
}

.badge-icon {
    width: 46px;
    height: 46px;
    background-color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.1);
}

.badge-delivery .badge-icon {
    color: var(--secondary);
    box-shadow: 0 4px 12px rgba(60, 91, 67, 0.1);
}

.badge-info {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-hover);
    letter-spacing: 0.02em;
}

.badge-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.1rem;
}

@keyframes floatEffect {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-12px);
    }
}

/* Category grid cards */
.categories-section {
    padding: 10rem 0;
    background-color: var(--bg);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

.category-card {
    background-color: var(--card-bg);
    padding: 4rem 2.5rem 3rem;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(74, 51, 37, 0.03);
    transition: var(--transition);
}

.category-emoji {
    font-size: 2.75rem;
    margin-bottom: 2.5rem;
    transition: var(--transition);
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--primary-hover);
    margin-bottom: 0.5rem;
}

.category-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.category-link {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 160, 89, 0.2);
    background-color: var(--white);
}

.category-card:hover .category-emoji {
    transform: scale(1.1) rotate(3deg);
}

.category-card:hover .category-link i {
    transform: translateX(3px);
}

/* Best Sellers / Shop Grid */
.best-sellers-section {
    padding: 10rem 0;
    background-color: var(--bg);
}

.best-sellers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

@media (max-width: 1200px) {
    .best-sellers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .best-sellers-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background-color: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(74, 51, 37, 0.03);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-img-wrapper {
    position: relative;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 2.5rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 290px;
}

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

.product-tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background-color: rgba(252, 250, 247, 0.95);
    color: var(--primary-hover);
    border: 1px solid rgba(138, 94, 64, 0.15);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 0.25rem 0.65rem;
    border-radius: 100px; /* Fully rounded capsule */
    box-shadow: 0 2px 10px rgba(74, 51, 37, 0.04);
    z-index: 2;
}

.product-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.product-rating i {
    width: 14px;
    height: 14px;
    color: var(--gold);
    fill: var(--gold);
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary-hover);
    line-height: 1.3;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-title a:hover {
    color: var(--primary);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-hover);
}

.btn-add-to-cart {
    background-color: var(--gold-light);
    color: var(--primary-hover);
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition-fast);
}

.btn-add-to-cart i {
    width: 14px;
    height: 14px;
}

.btn-add-to-cart:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 160, 89, 0.15);
    background-color: var(--white);
}

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

/* Why Choose Us - Boutique Spa Grid */
.why-choose-us-section {
    padding: 8rem 0;
    background-color: var(--white);
    border-top: 1px solid rgba(74, 51, 37, 0.03);
    border-bottom: 1px solid rgba(74, 51, 37, 0.03);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3.5rem;
}

@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

.why-item {
    display: flex;
    flex-direction: column;
}

.why-icon {
    width: 56px;
    height: 56px;
    background-color: var(--gold-light);
    color: var(--gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
}

#why-delivery .why-icon,
#why-support .why-icon {
    background-color: var(--secondary-light);
    color: var(--secondary);
}

.why-item h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--primary-hover);
    margin-bottom: 0.5rem;
}

.why-item p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Testimonials - Wicker glass */
.testimonials-section {
    padding: 10rem 0;
    background-color: var(--bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 3rem;
    max-width: 960px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 3.5rem 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    background-color: rgba(253, 251, 247, 0.7);
}

.testi-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.testi-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}

#testi-card-2 .testi-avatar {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.testi-meta h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-hover);
}

.testi-meta p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.testi-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testi-stars i {
    width: 14px;
    height: 14px;
    color: var(--gold);
    fill: var(--gold);
}

.testi-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.7;
}

/* Blog List */
.blog-section, .blog-page {
    padding: 10rem 0;
    background-color: var(--bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    background-color: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(74, 51, 37, 0.03);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-img-wrapper {
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FAF6F0, #EFECE6);
}

.blog-placeholder-img {
    font-size: 4.5rem;
}

#blog-card-persian .blog-img-wrapper {
    background: linear-gradient(135deg, var(--gold-light), rgba(197, 160, 89, 0.2));
}

#blog-card-puppy .blog-img-wrapper {
    background: linear-gradient(135deg, var(--secondary-light), rgba(60, 91, 67, 0.2));
}

#blog-card-health .blog-img-wrapper {
    background: linear-gradient(135deg, var(--primary-light), rgba(138, 94, 64, 0.2));
}

.blog-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 1.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-category {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.blog-read-time {
    color: var(--text-muted);
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-hover);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-excerpt {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.blog-link {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-hover);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background-color: var(--white);
    border-color: rgba(197, 160, 89, 0.2);
}

/* Newsletter - Organic Bamboo Grid */
.newsletter-section {
    padding: 6rem 0 10rem;
}

.newsletter-container {
    background: linear-gradient(135deg, rgba(253, 251, 247, 0.5), rgba(253, 251, 247, 0.25));
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 6rem 4rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.newsletter-content {
    max-width: 650px;
    margin: 0 auto;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: var(--primary-hover);
    margin-bottom: 1.25rem;
}

.newsletter-desc {
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

.newsletter-form {
    display: flex;
    background-color: var(--white);
    padding: 0.5rem;
    border-radius: 12px;
    border: 1px solid rgba(74, 51, 37, 0.08);
}

.newsletter-input {
    flex-grow: 1;
    border: none;
    background: none;
    padding: 0 1.5rem;
    font-size: 0.95rem;
    color: var(--text);
}

.btn-subscribe {
    border-radius: 8px;
}

.newsletter-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--secondary);
    font-weight: 600;
}

/* Footer - Editorial Teak style */
.footer {
    background-color: #24211F; /* Warm Deep Charcoal */
    color: #A39D98;
    padding: 8rem 0 4rem;
    font-size: 0.9rem;
    border-top: 1px solid rgba(74, 51, 37, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-logo span {
    color: var(--gold);
    font-style: italic;
    font-weight: 300;
}

.footer-column h4 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-column ul a:hover {
    color: var(--white);
    padding-left: 2px;
}

.contact-info li i {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #36322F;
    padding-top: 2.5rem;
}

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

/* ==========================================
   SHOP / FILTER SIDEBAR STYLE
   ========================================== */

.shop-main {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 3rem;
    padding-bottom: 10rem;
}

.shop-content-area {
    min-width: 0;
}

@media (max-width: 1024px) {
    .shop-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.shop-sidebar {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    min-width: 0;
}

.filter-group h3 {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-hover);
}

.search-box {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border: 1px solid rgba(74, 51, 37, 0.08);
    padding: 0.9rem 1.25rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.search-box input {
    border: none;
    flex-grow: 1;
    background: none;
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--text);
}

.search-box i {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
}

.filter-categories {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.cat-filter-btn {
    text-align: left;
    width: 100%;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.cat-filter-btn:hover,
.cat-filter-btn.active {
    color: var(--primary-hover);
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(74, 51, 37, 0.04);
}

.sort-select {
    width: 100%;
    padding: 0.9rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(74, 51, 37, 0.08);
    background-color: var(--white);
    font-family: inherit;
    font-size: 0.92rem;
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

.no-products, .loading-placeholder {
    grid-column: 1 / -1;
    padding: 7rem 2rem;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    background-color: var(--card-bg);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(74, 51, 37, 0.04);
}

/* ==========================================
   PRODUCT DETAILS DETAIL STYLE
   ========================================== */

.product-detail-main {
    padding-top: 170px;
    padding-bottom: 10rem;
}

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

@media (max-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.detail-img-box {
    background-color: var(--white);
    border-radius: 32px;
    padding: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(74, 51, 37, 0.03);
    height: 520px;
}

@media (max-width: 576px) {
    .detail-img-box {
        height: 360px;
    }
}

.detail-tag {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.detail-title {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 400;
    line-height: 1.15;
    color: var(--primary-hover);
    margin-bottom: 1rem;
}

.detail-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.detail-rating i {
    width: 16px;
    height: 16px;
    color: var(--gold);
    fill: var(--gold);
}

.detail-price {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-hover);
    margin-bottom: 2rem;
}

.detail-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 3rem;
}

.detail-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (max-width: 576px) {
    .detail-actions {
        flex-direction: column;
    }
}

.qty-selector {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-radius: 12px;
    padding: 0.4rem 0.6rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(74, 51, 37, 0.08);
}

.qty-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-hover);
    transition: var(--transition-fast);
}

.qty-btn:hover {
    background-color: rgba(74, 51, 37, 0.04);
}

.qty-number {
    font-size: 1.1rem;
    font-weight: 700;
    min-width: 44px;
    text-align: center;
}

.btn-add-detail {
    flex-grow: 1;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(138, 94, 64, 0.15);
}

.detail-specs-section h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary-hover);
    margin-bottom: 1.5rem;
}

.specs-table tr {
    border-bottom: 1px solid rgba(74, 51, 37, 0.04);
}

.specs-table td {
    padding: 1.1rem 0;
    font-size: 0.95rem;
}

.spec-label {
    font-weight: 700;
    color: var(--primary-hover);
    width: 190px;
}

.spec-value {
    color: var(--text-muted);
}

/* ==========================================
   CART & ORDER SUMMARY STYLES
   ========================================== */

.cart-main-container {
    padding-bottom: 10rem;
}

.cart-split-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 4.5rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .cart-split-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

.cart-card-container {
    background-color: var(--card-bg);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(74, 51, 37, 0.03);
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.25rem 0;
    border-bottom: 1px solid rgba(74, 51, 37, 0.05);
}

.cart-item-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cart-item-row:first-child {
    padding-top: 0;
}

.cart-item-info {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.cart-item-img {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    object-fit: contain;
    background-color: var(--white);
    padding: 0.5rem;
    border: 1px solid rgba(74, 51, 37, 0.03);
}

.cart-item-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-hover);
    margin-bottom: 0.25rem;
}

.cart-item-price {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 2rem;
}

@media (max-width: 768px) {
    .cart-item-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .cart-item-controls {
        width: 100%;
        justify-content: space-between;
    }
}

.cart-item-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-hover);
    min-width: 90px;
    text-align: right;
}

.cart-remove-btn {
    color: #C62828;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.cart-remove-btn:hover {
    background-color: #FFEBEE;
}

.empty-cart-state {
    text-align: center;
    padding: 4rem 1rem;
}

.empty-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.empty-cart-state h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-hover);
    margin-bottom: 0.5rem;
}

.empty-cart-state p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.summary-card {
    background-color: var(--card-bg);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(74, 51, 37, 0.03);
}

.summary-card h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--primary-hover);
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.grand-total-row {
    border-top: 1px solid rgba(74, 51, 37, 0.06);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-hover);
}

/* Forms layout */
.checkout-form, .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.input-field-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-field-group label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-hover);
}

.checkout-form input,
.checkout-form textarea,
.payment-select,
.contact-form input,
.contact-form textarea {
    border-radius: 12px;
    border: 1px solid rgba(74, 51, 37, 0.08);
    background-color: var(--white);
    padding: 1rem 1.25rem;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text);
    transition: var(--transition-fast);
}

.checkout-form input:focus,
.checkout-form textarea:focus,
.payment-select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(138, 94, 64, 0.1);
}

.btn-checkout-submit, .btn-contact-submit {
    margin-top: 1.5rem;
    border-radius: 12px;
}

/* Order Success Prompt */
.order-success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg);
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.success-message-card {
    background-color: var(--card-bg);
    border-radius: 24px;
    padding: 4rem;
    max-width: 620px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(74, 51, 37, 0.04);
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: var(--secondary-light);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.success-icon i {
    width: 32px;
    height: 32px;
}

.success-message-card h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary-hover);
    margin-bottom: 1rem;
}

.success-message-card p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.order-details-summary {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: left;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(74, 51, 37, 0.04);
}

.order-details-summary h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-hover);
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(74, 51, 37, 0.05);
    padding-bottom: 0.5rem;
}

.success-summary-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 0.95rem;
}

/* ==========================================
   CONTACT PAGE STYLES
   ========================================== */

.contact-main {
    padding-bottom: 10rem;
}

.contact-grid-split {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 5rem;
}

@media (max-width: 1024px) {
    .contact-grid-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.info-card, .form-card {
    background-color: var(--card-bg);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(74, 51, 37, 0.03);
    height: 100%;
}

.info-card h2, .form-card h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    color: var(--primary-hover);
    margin-bottom: 1.5rem;
}

.info-intro {
    color: var(--text-muted);
    margin-bottom: 3.5rem;
}

.info-details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-details-list li {
    display: flex;
    gap: 1.5rem;
}

.info-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background-color: var(--gold-light);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-details-list li h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-hover);
    margin-bottom: 0.35rem;
}

.info-details-list li p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-success-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 0;
}

.contact-success-state h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-hover);
    margin-bottom: 0.5rem;
}

.contact-success-state p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* ==========================================
   ABOUT PAGE STYLES
   ========================================== */

.about-main {
    padding-bottom: 10rem;
}

.about-story-section {
    background-color: var(--card-bg);
    border-radius: 24px;
    padding: 5rem 4rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 8rem;
    border: 1px solid rgba(74, 51, 37, 0.03);
}

.about-story-content h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--primary-hover);
    margin-bottom: 1.75rem;
}

.about-story-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.75rem;
}

.about-values-section {
    padding: 2rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    background-color: var(--card-bg);
    border-radius: 24px;
    padding: 4rem 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(74, 51, 37, 0.03);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.value-icon {
    width: 64px;
    height: 64px;
    background-color: var(--gold-light);
    color: var(--gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary-hover);
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================
   MOBILE & TABLET RESPONSIVENESS OVERRIDES
   ========================================== */

/* Reduce excessive vertical padding on all pages */
@media (max-width: 768px) {
    .best-sellers-section,
    .categories-section,
    .why-choose-us-section,
    .testimonials-section,
    .blog-section,
    .contact-hero,
    .about-hero,
    .shop-hero,
    .cart-section,
    .blog-hero {
        padding: 4.5rem 0 !important;
    }
    .section-header {
        margin-bottom: 2.5rem !important;
    }
}

/* 2-Column Grid Layout for Products and Categories on Mobile */
@media (max-width: 576px) {
    .best-sellers-grid,
    #related-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    .product-card {
        padding: 0.88rem !important;
        border-radius: 16px !important;
    }
    .product-img-wrapper {
        padding: 1rem !important;
        height: 140px !important;
    }
    .product-details {
        padding: 0.75rem 0 0 0 !important;
    }
    .category-card {
        padding: 1.5rem 1rem !important;
        border-radius: 16px !important;
    }
    .category-icon {
        width: 52px !important;
        height: 52px !important;
        margin-bottom: 1.25rem !important;
    }
    .category-card h3 {
        font-size: 1.05rem !important;
    }
}

/* Hero Section Mobile Polish */
@media (max-width: 576px) {
    .hero-section {
        padding-top: 100px !important;
        padding-bottom: 4rem !important;
        min-height: auto !important;
    }
    .hero-title {
        font-size: 2.15rem !important;
        line-height: 1.35 !important;
    }
    .hero-desc {
        font-size: 0.88rem !important;
        margin-bottom: 2rem !important;
    }
    .hero-ctas {
        flex-direction: column !important;
        width: 100% !important;
        gap: 0.75rem !important;
    }
    .hero-ctas .btn {
        width: 100% !important;
        padding: 0.9rem 1.5rem !important;
    }
    .pets-image-wrapper {
        border-radius: 20px !important;
        margin-top: 1rem !important;
    }
    .floating-card {
        padding: 0.75rem !important;
        border-radius: 12px !important;
    }
}

/* Header/Navbar Small Screen Adjustments */
@media (max-width: 576px) {
    .nav-container {
        padding: 0 1rem !important;
    }
    .nav-logo {
        font-size: 1.45rem !important;
    }
    .nav-actions {
        gap: 0.5rem !important;
    }
    .nav-action-btn {
        width: 36px !important;
        height: 36px !important;
    }
    .nav-action-btn i {
        width: 16px !important;
        height: 16px !important;
    }
    .cart-badge {
        top: 2px !important;
        right: 2px !important;
        font-size: 0.65rem !important;
        width: 14px !important;
        height: 14px !important;
    }
}

/* Checkout and Cart Mobile Adjustments */
@media (max-width: 576px) {
    .cart-section {
        padding-top: 100px !important;
    }
    .cart-item-row {
        padding: 1rem 0 !important;
        gap: 1rem !important;
    }
    .cart-item-info {
        gap: 0.75rem !important;
    }
    .cart-item-info img {
        width: 64px !important;
        height: 64px !important;
    }
    .cart-item-title {
        font-size: 0.95rem !important;
    }
    .cart-item-variants {
        font-size: 0.75rem !important;
    }
    .cart-item-controls {
        gap: 1rem !important;
    }
    .qty-selector {
        padding: 0.25rem 0.5rem !important;
        gap: 0.5rem !important;
    }
    .qty-btn {
        width: 24px !important;
        height: 24px !important;
    }
    .qty-number {
        font-size: 0.9rem !important;
    }
    .cart-item-total {
        font-size: 1.05rem !important;
        min-width: 60px !important;
    }
    .cart-remove-btn {
        width: 32px !important;
        height: 32px !important;
    }
    .checkout-summary-section {
        padding: 1.25rem !important;
        border-radius: 16px !important;
    }
    .summary-title {
        font-size: 1.25rem !important;
    }
    .summary-row {
        font-size: 0.9rem !important;
    }
    .checkout-form {
        gap: 1rem !important;
    }
    .checkout-form input,
    .checkout-form textarea,
    .payment-select {
        padding: 0.75rem 1rem !important;
        font-size: 0.9rem !important;
    }
}

/* Product Detail Page Mobile Adjustments */
@media (max-width: 576px) {
    .product-detail-main {
        padding-top: 100px !important;
    }
    .detail-img-box {
        height: 280px !important;
        border-radius: 20px !important;
    }
    .detail-title {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
    }
    .detail-price {
        font-size: 1.6rem !important;
    }
    .detail-desc {
        font-size: 0.88rem !important;
        line-height: 1.6 !important;
    }
    .detail-actions {
        gap: 0.75rem !important;
    }
    .detail-actions .qty-selector {
        width: 100% !important;
        justify-content: space-between !important;
        padding: 0.5rem 1rem !important;
    }
    .detail-actions .btn {
        width: 100% !important;
        padding: 0.9rem 1rem !important;
        font-size: 0.9rem !important;
    }
    .detail-specs-section h3 {
        font-size: 1.15rem !important;
    }
    .spec-label, .spec-value {
        font-size: 0.85rem !important;
        padding: 0.8rem 0 !important;
    }
}

/* ==========================================
   SHOP CATALOG GRID AND FILTERS OVERRIDES
   ========================================== */

/* Catalog grid layout rules */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

@media (max-width: 1280px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Horizontal Category Scroller on Mobile/Tablet */
    .shop-sidebar {
        gap: 2rem !important;
    }
    .filter-group h3 {
        margin-bottom: 0.75rem !important;
    }
    .filter-categories {
        flex-direction: row !important;
        overflow-x: auto !important;
        padding-bottom: 0.5rem !important;
        gap: 0.75rem !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Hide scrollbar for Firefox */
        width: 100% !important;
        max-width: 100% !important;
    }
    .filter-categories::-webkit-scrollbar {
        display: none; /* Hide scrollbar for Chrome/Safari */
    }
    .cat-filter-btn {
        white-space: nowrap !important;
        width: auto !important;
        padding: 0.6rem 1.1rem !important;
    }
}

@media (max-width: 576px) {
    /* Catalog grid mobile spacing overrides */
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    .product-tag {
        top: 0.5rem !important;
        left: 0.5rem !important;
        font-size: 0.62rem !important;
        padding: 0.18rem 0.5rem !important;
    }
    
    /* Cart card container and order summary card paddings */
    .cart-card-container,
    .summary-card {
        padding: 1.5rem !important;
        border-radius: 16px !important;
    }
    
    /* Product card footer mobile layout - prevents horizontal scroll/zoom out issues */
    .product-footer {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.75rem !important;
    }
    .product-footer > div {
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    .product-footer .btn-add-to-cart {
        flex-grow: 1 !important;
        justify-content: center !important;
        text-align: center !important;
    }
    
    /* About & Contact card paddings */
    .about-story-section {
        padding: 2.5rem 1.5rem !important;
        margin-bottom: 4rem !important;
    }
    .info-card, .form-card {
        padding: 2.5rem 1.5rem !important;
    }
    .info-intro {
        margin-bottom: 2rem !important;
    }
    
    /* Order success screen scroll & padding adjustments */
    .order-success-overlay {
        padding: 1rem !important;
        overflow-y: auto !important;
        align-items: flex-start !important;
    }
    .success-message-card {
        padding: 2.5rem 1.5rem !important;
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }
    .success-message-card h1 {
        font-size: 1.85rem !important;
    }
    .order-details-summary {
        padding: 1.5rem 1rem !important;
    }
    .success-summary-grid {
        font-size: 0.88rem !important;
    }
}

/* ==========================================
   SIMPLIFIED COMPACT PRODUCT CARD LAYOUTS
   ========================================== */

.product-details-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    width: 100%;
    gap: 0.5rem;
}

.product-details-head .product-title {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-hover);
    margin-bottom: 0;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-details-head .product-title a:hover {
    color: var(--primary);
}

.product-details-head .product-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-hover);
    white-space: nowrap;
    flex-shrink: 0;
}

.card-action-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: auto;
}

.btn-add-simple {
    background-color: var(--gold);
    color: var(--white);
    padding: 0.5rem 2.25rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.2);
}

.btn-add-simple:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(138, 94, 64, 0.25);
}

.qty-selector-simple {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg);
    border: 1px solid rgba(74, 51, 37, 0.08);
    border-radius: 100px;
    padding: 0.4rem 0.85rem;
    gap: 1.5rem;
    min-width: 120px;
    box-shadow: var(--shadow-sm);
}

.qty-btn-simple {
    border: none;
    background: none;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-hover);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: var(--transition-fast);
}

.qty-btn-simple:hover {
    color: var(--gold);
}

.qty-number-simple {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-hover);
    min-width: 20px;
    text-align: center;
}

@media (max-width: 576px) {
    .product-details-head .product-title {
        font-size: 0.92rem;
    }
    .product-details-head .product-price {
        font-size: 0.98rem;
    }
    .btn-add-simple {
        padding: 0.4rem 1.5rem;
        font-size: 0.75rem;
        width: 100%;
    }
    .qty-selector-simple {
        padding: 0.3rem 0.6rem;
        gap: 1rem;
        min-width: 100px;
        width: 100%;
    }
    .qty-btn-simple {
        font-size: 1.1rem;
    }
    .qty-number-simple {
        font-size: 0.85rem;
    }
}

/* ==========================================
   QUICK CHECKOUT POPUP MODAL STYLES
   ========================================== */
.quick-checkout-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(36, 33, 31, 0.6);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}
.quick-checkout-overlay.show {
    opacity: 1;
    pointer-events: all;
}
.quick-checkout-modal {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    width: 100%;
    max-width: 550px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.quick-checkout-overlay.show .quick-checkout-modal {
    transform: scale(1) translateY(0);
}
.quick-checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(74, 51, 37, 0.05);
    padding-bottom: 1rem;
}
.quick-checkout-header h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--primary-hover);
    font-weight: 500;
}
.quick-checkout-close {
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
}
.quick-checkout-close:hover {
    color: var(--primary-hover);
}
.quick-checkout-product-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background-color: var(--white);
    padding: 1.25rem;
    border-radius: calc(var(--border-radius) / 2);
    border: 1px solid var(--glass-border);
}
.quick-checkout-product-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 8px;
    background-color: var(--bg);
}
.quick-checkout-product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.quick-checkout-product-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary-hover);
}
.quick-checkout-product-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
}
.quick-checkout-qty-control {
    display: flex;
    align-items: center;
    border: 1px solid rgba(74, 51, 37, 0.08);
    border-radius: 100px;
    padding: 0.25rem 0.5rem;
    background-color: var(--bg);
    gap: 0.75rem;
}
.quick-checkout-qty-btn {
    border: none;
    background: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-hover);
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quick-checkout-qty-num {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-hover);
    min-width: 20px;
    text-align: center;
}
@media (max-width: 576px) {
    .quick-checkout-modal {
        padding: 1.5rem;
        border-radius: 16px;
        gap: 1.25rem;
    }
    .quick-checkout-header h2 {
        font-size: 1.45rem;
    }
    .quick-checkout-product-row {
        padding: 0.88rem;
        gap: 0.88rem;
    }
    .quick-checkout-product-img {
        width: 52px;
        height: 52px;
    }
    .quick-checkout-product-title {
        font-size: 0.95rem;
    }
    .quick-checkout-product-price {
        font-size: 1.05rem;
    }
}
