/* ==========================================================================
   CraftedWithClay Stylesheet
   Theme: Claymorphism (tactile, friendly, rounded, warm pastel tones)
   ========================================================================== */

/* --- CSS Variables & Root Setup --- */
:root {
    --bg-main: #FAF6F0;       /* Warm cream background */
    --bg-card: #FFFFFF;       /* Pure white card base */
    --bg-inner: #F4F1DE;     /* Secondary clay background (sage-beige) */
    
    --primary: #E07A5F;       /* Terracotta Clay */
    --primary-light: #F2CC8F; /* Pastel Yellow-Orange */
    --secondary: #81B29A;     /* Sage Green */
    --secondary-dark: #6C9A84;
    --text-dark: #3D405B;     /* Charcoal/Slate Text */
    --text-light: #8E91A8;    /* Muted Text */
    --white: #FFFFFF;
    
    /* Claymorphic Shadows: Outer shadow + Inner highlight/shadow for 3D effect */
    --clay-shadow-sm: 4px 4px 10px rgba(61, 64, 91, 0.08), 
                      inset -2px -2px 6px rgba(0, 0, 0, 0.1), 
                      inset 2px 2px 6px rgba(255, 255, 255, 0.8);
                      
    --clay-shadow-md: 8px 8px 20px rgba(61, 64, 91, 0.06), 
                      inset -4px -4px 10px rgba(0, 0, 0, 0.08), 
                      inset 4px 4px 10px rgba(255, 255, 255, 0.9);
                      
    --clay-shadow-lg: 16px 16px 36px rgba(61, 64, 91, 0.08), 
                      inset -8px -8px 16px rgba(0, 0, 0, 0.06), 
                      inset 8px 8px 16px rgba(255, 255, 255, 0.9);

    --clay-btn-shadow: 0px 8px 16px rgba(224, 122, 95, 0.25),
                       inset -4px -4px 8px rgba(0, 0, 0, 0.15),
                       inset 4px 4px 8px rgba(255, 255, 255, 0.3);

    --clay-btn-shadow-sec: 0px 8px 16px rgba(129, 178, 154, 0.25),
                           inset -4px -4px 8px rgba(0, 0, 0, 0.15),
                           inset 4px 4px 8px rgba(255, 255, 255, 0.3);

    --transition-smooth: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --border-radius-lg: 28px;
    --border-radius-md: 20px;
    --border-radius-sm: 12px;

    /* Hand-molded irregular clay shape border radii */
    --clay-border-card: 30px 15px 30px 15px / 15px 30px 15px 30px;
    --clay-border-img: 20px 10px 20px 10px / 10px 20px 10px 20px;
    --clay-border-btn: 15px 25px 15px 25px / 20px 12px 20px 12px;
}

/* --- Base Resets & Font Settings --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* Strict Layout Viewport Locking to prevent accidental horizontal scrollbar */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    background-color: var(--bg-main);
    color: var(--text-dark);
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3, h4, .logo {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
}

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

/* --- Background Decorative Blobs --- */
.bg-blob {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px);
    opacity: 0.25;
    animation: float 25s infinite alternate ease-in-out;
    max-width: 100vw;
}

.blob-1 {
    top: 10%;
    left: -5%;
    width: 350px;
    height: 350px;
    background-color: var(--primary-light);
}

.blob-2 {
    top: 45%;
    right: -10%;
    width: 450px;
    height: 450px;
    background-color: var(--secondary);
    animation-delay: -5s;
}

.blob-3 {
    bottom: 5%;
    left: 20%;
    width: 300px;
    height: 300px;
    background-color: var(--primary);
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(30px, -50px) scale(1.1) rotate(120deg); }
    66% { transform: translate(-20px, 20px) scale(0.95) rotate(240deg); }
    100% { transform: translate(0, 0) scale(1) rotate(360deg); }
}

/* --- Header & Navigation --- */
header {
    background-color: rgba(250, 246, 240, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 15px 0;
    border-bottom: 2px solid rgba(224, 122, 95, 0.08);
    transition: var(--transition-smooth);
}

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

.logo {
    font-size: 1.6rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.logo i {
    color: var(--primary);
    font-size: 1.8rem;
    animation: rotateSlow 8s linear infinite;
}

.logo span {
    color: var(--primary);
    font-weight: 400;
    font-size: 1.3rem;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nav-links {
    display: flex;
    background: rgba(61, 64, 91, 0.04);
    padding: 6px;
    border-radius: var(--border-radius-sm);
    box-shadow: inset 1px 1px 3px rgba(0,0,0,0.05);
}

.nav-link {
    padding: 8px 20px;
    border-radius: calc(var(--border-radius-sm) - 4px);
    font-weight: 600;
    color: var(--text-dark);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link.active {
    background-color: var(--white);
    color: var(--primary);
    box-shadow: 2px 2px 8px rgba(0,0,0,0.04), 
                inset 1px 1px 2px rgba(255,255,255,0.8);
}

/* --- Buttons (Claymorphic & Organic) --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--clay-border-btn);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    user-select: none;
}

.btn:active {
    transform: scale(0.94);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--clay-btn-shadow);
}

.btn-primary:hover {
    background-color: #e58b73;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0px 12px 20px rgba(224, 122, 95, 0.35),
                inset -4px -4px 8px rgba(0, 0, 0, 0.15),
                inset 4px 4px 8px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
    box-shadow: var(--clay-btn-shadow-sec);
}

.btn-secondary:hover {
    background-color: #92bfa9;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0px 12px 20px rgba(129, 178, 154, 0.35),
                inset -4px -4px 8px rgba(0, 0, 0, 0.15),
                inset 4px 4px 8px rgba(255, 255, 255, 0.3);
}

.btn-danger {
    background-color: #e07a7a;
    color: var(--white);
    box-shadow: 0px 8px 16px rgba(224, 122, 122, 0.25),
                inset -4px -4px 8px rgba(0,0,0,0.15),
                inset 4px 4px 8px rgba(255,255,255,0.3);
}

.btn-danger:hover {
    background-color: #e89292;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.9rem;
}

.btn-full-width {
    width: 100%;
}

/* --- Cart Icon Header Badge --- */
.cart-toggle-btn {
    background-color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--text-dark);
    position: relative;
    box-shadow: var(--clay-shadow-sm);
    transition: var(--transition-smooth);
}

.cart-toggle-btn:hover {
    transform: scale(1.08);
    color: var(--primary);
    box-shadow: 6px 6px 15px rgba(61, 64, 91, 0.12), 
                inset -2px -2px 6px rgba(0, 0, 0, 0.08), 
                inset 2px 2px 6px rgba(255, 255, 255, 0.8);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary);
    color: var(--white);
    font-family: 'Fredoka', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 2px 5px rgba(224, 122, 95, 0.4);
    animation: bounceBadge 0.4s ease-out alternate;
}

@keyframes bounceBadge {
    0% { transform: scale(0.6); }
    100% { transform: scale(1); }
}

/* --- Hero Section --- */
.hero-section {
    max-width: 1200px;
    margin: 110px auto 40px auto;
    padding: 40px 25px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-tag {
    background-color: rgba(224, 122, 95, 0.1);
    color: var(--primary);
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    width: fit-content;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-dark);
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-clay-card {
    background-color: var(--white);
    padding: 16px;
    border-radius: var(--clay-border-card);
    box-shadow: var(--clay-shadow-lg);
    transform: rotate(2deg);
    animation: floatClayCard 6s ease-in-out infinite alternate;
    position: relative;
    width: 380px;
    max-width: min(100%, 380px); /* Bypasses overflow scroll bleedout */
}

.hero-img {
    width: 100%;
    border-radius: var(--clay-border-img);
    display: block;
    object-fit: cover;
}

.card-tag {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(-4deg);
    background-color: var(--primary-light);
    color: var(--text-dark);
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--clay-shadow-sm);
    font-size: 0.95rem;
    white-space: nowrap;
}

@keyframes floatClayCard {
    0% { transform: translateY(0) rotate(2deg); }
    100% { transform: translateY(-15px) rotate(-1deg); }
}

/* --- About/Process Section --- */
.about-section {
    max-width: 1200px;
    margin: 60px auto 40px auto;
    padding: 0 25px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 35px;
    margin-top: 40px;
}

.process-card {
    background-color: var(--white);
    border-radius: var(--clay-border-card);
    box-shadow: var(--clay-shadow-md);
    padding: 35px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--clay-shadow-lg);
    border-color: rgba(224, 122, 95, 0.08);
}

.process-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--clay-shadow-sm);
}

.pink-bg { background-color: rgba(224, 122, 95, 0.15); color: var(--primary); }
.yellow-bg { background-color: rgba(242, 204, 143, 0.25); color: #d69f3c; }
.sage-bg { background-color: rgba(129, 178, 154, 0.2); color: var(--secondary-dark); }
.yellow-bg-tint:hover { border-color: rgba(242, 204, 143, 0.2); }
.sage-bg-tint:hover { border-color: rgba(129, 178, 154, 0.2); }

/* --- Shop Container & Grid --- */
.shop-container {
    max-width: 1200px;
    margin: 40px auto 80px auto;
    padding: 0 25px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 500px;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.filter-btn {
    background-color: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    font-family: 'Fredoka', sans-serif;
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: var(--clay-shadow-sm);
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    transform: translateY(-2px);
    color: var(--primary);
}

.filter-btn.active {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--clay-btn-shadow);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 35px;
    margin-top: 40px;
}

/* --- Product Cards --- */
.product-card {
    background-color: var(--white);
    border-radius: var(--clay-border-card);
    box-shadow: var(--clay-shadow-md);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: var(--transition-smooth);
    position: relative;
    border: 2px solid transparent;
}

/* Alternating Playful Rotation Hover Animation */
.product-card:nth-child(odd):hover {
    transform: translateY(-8px) rotate(-1.5deg) scale(1.02);
    box-shadow: var(--clay-shadow-lg);
    border-color: rgba(224, 122, 95, 0.1);
}

.product-card:nth-child(even):hover {
    transform: translateY(-8px) rotate(1.5deg) scale(1.02);
    box-shadow: var(--clay-shadow-lg);
    border-color: rgba(224, 122, 95, 0.1);
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1.1;
    overflow: hidden;
    border-radius: var(--clay-border-img);
    background-color: var(--bg-inner);
}

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

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

.product-category-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 50px;
    box-shadow: var(--clay-shadow-sm);
    z-index: 2;
}

/* Admin Delete Product Button (used in admin.html inventory manager list or cards) */
.admin-delete-product-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e07a7a;
    color: var(--white);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 10;
    box-shadow: var(--clay-shadow-sm);
    transition: var(--transition-smooth);
}

.admin-delete-product-btn:hover {
    background-color: #e89292;
    transform: scale(1.1) rotate(-10deg);
}

body.admin-mode .admin-delete-product-btn {
    display: flex;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-grow: 1;
}

.product-title {
    font-size: 1.25rem;
    color: var(--text-dark);
}

.product-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
}

.price-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.price-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Fredoka', sans-serif;
}

/* Tactile Quantity Modifier Section */
.product-quantity-selector {
    background-color: var(--bg-inner);
    border-radius: var(--border-radius-sm);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.06), 
                inset -2px -2px 5px rgba(255,255,255,0.7);
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background-color: var(--white);
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: var(--clay-shadow-sm);
    transition: var(--transition-smooth);
}

.qty-btn:hover {
    color: var(--primary);
    transform: scale(1.08);
}

.qty-btn:active {
    transform: scale(0.9);
}

.qty-display {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    width: 30px;
    text-align: center;
}

.price-subtotal {
    text-align: right;
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 600;
}

.price-subtotal span {
    font-family: 'Fredoka', sans-serif;
    color: var(--primary);
    font-weight: 700;
}

/* --- Reviews Section --- */
.reviews-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 25px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 35px;
    margin-top: 40px;
}

.review-card {
    background-color: var(--white);
    border-radius: var(--clay-border-card);
    box-shadow: var(--clay-shadow-md);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-left: 5px solid var(--primary-light);
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--clay-shadow-lg);
}

.review-stars {
    color: var(--primary-light);
    font-size: 0.95rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-style: italic;
}

.reviewer-name {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
    text-align: right;
    margin-top: auto;
}

/* --- FAQ Section --- */
.faq-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 25px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--clay-shadow-sm);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: var(--clay-shadow-md);
}

.faq-item.active {
    border-color: rgba(224, 122, 95, 0.1);
    box-shadow: var(--clay-shadow-md);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    display: none; /* Toggled via script */
}

.faq-item.active .faq-answer {
    display: block;
}

/* --- Admin Dashboard Layout & Tabs --- */
.admin-section {
    max-width: 1200px;
    margin: 40px auto 80px auto;
    padding: 0 25px;
    animation: fadeInSlide 0.5s ease-out;
}

@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.admin-card {
    background-color: var(--bg-inner);
    border-radius: var(--clay-border-card);
    box-shadow: var(--clay-shadow-lg);
    padding: 40px;
}

.admin-card-header {
    margin-bottom: 25px;
    border-bottom: 2px dashed rgba(61, 64, 91, 0.08);
    padding-bottom: 15px;
}

.admin-card-header h3 {
    font-size: 2rem;
    color: var(--text-dark);
}

.admin-card-header p {
    color: var(--text-light);
    margin-top: 5px;
}

.admin-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.admin-tab-btn {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    background-color: var(--white);
    color: var(--text-dark);
    padding: 10px 25px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    box-shadow: var(--clay-shadow-sm);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.admin-tab-btn:hover {
    transform: translateY(-2px);
    color: var(--primary);
}

.admin-tab-btn.active {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--clay-btn-shadow);
}

.admin-tab-content {
    display: none;
}

.admin-tab-content.active {
    display: block;
    animation: fadeInTab 0.4s ease-out;
}

@keyframes fadeInTab {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Admin Dashboard Table */
.orders-control-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.orders-control-header h4 {
    font-size: 1.4rem;
    color: var(--text-dark);
}

.orders-list-container {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 20px;
    box-shadow: inset 2px 2px 5px rgba(0,0,0,0.05),
                var(--clay-shadow-sm);
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.empty-orders-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    color: var(--text-light);
    gap: 15px;
    height: 200px;
}

.empty-orders-message i {
    font-size: 3rem;
    color: var(--primary-light);
}

.orders-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

.orders-table th {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    color: var(--text-dark);
    padding: 12px 15px;
    border-bottom: 2px solid rgba(61, 64, 91, 0.08);
}

.orders-table td {
    padding: 14px 15px;
    border-bottom: 1px solid rgba(61, 64, 91, 0.05);
    vertical-align: top;
    color: var(--text-dark);
}

.orders-table tbody tr:hover {
    background-color: rgba(250, 246, 240, 0.5);
}

.orders-table .order-cust-name {
    font-weight: 700;
    color: var(--text-dark);
}

.orders-table .order-cust-phone {
    font-size: 0.85rem;
    color: var(--text-light);
    display: block;
    margin-top: 4px;
}

.orders-table .order-items-list {
    list-style: none;
    font-size: 0.9rem;
}

.orders-table .order-items-list li {
    margin-bottom: 4px;
}

.orders-table .order-total-price {
    font-weight: 700;
    font-family: 'Fredoka', sans-serif;
    color: var(--primary);
}

/* Admin Add Product Form layout */
.product-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.form-left, .form-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    background-color: var(--white);
    border: 2px solid transparent;
    padding: 12px 18px;
    border-radius: var(--border-radius-sm);
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    box-shadow: inset 2px 2px 6px rgba(0, 0, 0, 0.05),
                var(--clay-shadow-sm);
    transition: var(--transition-smooth);
    outline: none;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0px 4px 12px rgba(224, 122, 95, 0.15),
                inset 1px 1px 3px rgba(0, 0, 0, 0.05);
}

/* Image Upload Container */
.image-upload-box {
    background-color: var(--white);
    border: 3px dashed rgba(224, 122, 95, 0.3);
    border-radius: var(--clay-border-img);
    height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.image-upload-box:hover {
    border-color: var(--primary);
    background-color: rgba(250, 246, 240, 0.5);
}

.file-input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 5;
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    color: var(--text-light);
}

.upload-placeholder i {
    font-size: 2.2rem;
    color: var(--primary);
}

.upload-placeholder span {
    font-weight: 700;
}

.image-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.remove-preview-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: var(--clay-shadow-sm);
}

.remove-preview-btn:hover {
    background-color: #d16b51;
}

.image-url-fallback {
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 5px;
}

/* --- Admin Login Modal overlay --- */
.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(61, 64, 91, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: opacity 0.3s ease;
}

.login-overlay.active {
    display: flex;
}

.login-card {
    background-color: var(--white);
    border-radius: var(--clay-border-card);
    box-shadow: var(--clay-shadow-lg);
    padding: 40px;
    max-width: 420px;
    width: 100%;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: scaleUpBounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.login-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--bg-main);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--clay-shadow-sm);
}

.login-close-btn:hover {
    color: var(--primary);
    transform: scale(1.08);
}

.login-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(224, 122, 95, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto;
    box-shadow: var(--clay-shadow-sm);
}

.login-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
}

.login-card form {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.login-error-msg {
    display: none;
    color: #e07a7a;
    font-weight: 600;
    font-size: 0.85rem;
    background-color: rgba(224, 122, 122, 0.1);
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
    border-left: 4px solid #e07a7a;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

/* --- Cart Drawer Panel (Slide-In) --- */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(61, 64, 91, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -480px;
    width: 100%;
    max-width: 460px;
    height: 100%;
    background-color: var(--bg-main);
    box-shadow: -10px 0px 40px rgba(61, 64, 91, 0.15);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(224, 122, 95, 0.08);
}

.cart-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-header h3 i {
    color: var(--primary);
}

.cart-close-btn {
    background-color: var(--white);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: var(--clay-shadow-sm);
    transition: var(--transition-smooth);
}

.cart-close-btn:hover {
    color: var(--primary);
    transform: scale(1.08);
}

/* Cart Contents */
.cart-content {
    flex-grow: 1;
    overflow-y: auto;
    padding: 25px;
}

.empty-cart-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 250px;
    text-align: center;
    color: var(--text-light);
    gap: 15px;
}

.empty-cart-message i {
    font-size: 3rem;
    color: var(--primary-light);
    animation: swingMug 3s infinite alternate ease-in-out;
}

@keyframes swingMug {
    0% { transform: rotate(-8deg); }
    100% { transform: rotate(8deg); }
}

.empty-cart-message p {
    font-size: 1.05rem;
    font-weight: 600;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Cart Item Cards */
.cart-item {
    display: flex;
    gap: 15px;
    background-color: var(--white);
    padding: 14px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--clay-shadow-sm);
    align-items: center;
    animation: slideInItem 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideInItem {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.cart-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-inner);
}

.cart-item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
}

.cart-item-price {
    font-family: 'Fredoka', sans-serif;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--bg-inner);
    padding: 4px 8px;
    border-radius: 30px;
    box-shadow: inset 1px 1px 3px rgba(0,0,0,0.06);
}

.cart-item-qty .qty-display {
    font-size: 0.95rem;
    width: 20px;
}

.cart-item-qty .qty-btn {
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.cart-item-remove:hover {
    color: #e07a7a;
}

/* Cart Footer & Checkout Form */
.cart-footer {
    border-top: 2px solid rgba(224, 122, 95, 0.08);
    padding: 25px;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-summary {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.summary-row.delivery .delivery-badge {
    color: var(--secondary);
    font-weight: 700;
}

.summary-row.total {
    font-size: 1.3rem;
    color: var(--text-dark);
    border-top: 1px dashed rgba(224, 122, 95, 0.15);
    padding-top: 10px;
    margin-top: 5px;
}

.summary-row.total span:last-child {
    font-family: 'Fredoka', sans-serif;
    color: var(--primary);
    font-weight: 700;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkout-form h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(224, 122, 95, 0.08);
    padding-bottom: 4px;
}

.checkout-form .form-group input, 
.checkout-form .form-group textarea {
    padding: 10px 14px;
    font-size: 0.9rem;
    border-radius: var(--border-radius-sm);
}

.checkout-submit-btn {
    margin-top: 5px;
}

/* --- Redesigned Fullscreen Thank You Page Screen --- */
.success-overlay-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-main);
    z-index: 2500;
    display: none;
    overflow-y: auto;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.success-overlay-fullscreen.active {
    display: flex;
}

.thankyou-container {
    max-width: 580px;
    width: 100%;
    margin: auto;
}

.thankyou-card {
    background-color: var(--white);
    border-radius: var(--clay-border-card);
    box-shadow: var(--clay-shadow-lg);
    padding: 45px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    animation: scaleUpBounce 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.clay-heart-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clay-heart {
    font-size: 4.8rem;
    color: var(--primary);
    filter: drop-shadow(0 6px 12px rgba(224, 122, 95, 0.3));
    animation: heartBeatClay 1.8s infinite ease-in-out;
}

.clay-star {
    position: absolute;
    color: var(--primary-light);
    font-size: 1.4rem;
}

.star-1 {
    top: 5px;
    left: 0px;
    animation: starFloat 2s infinite alternate ease-in-out;
}

.star-2 {
    bottom: 5px;
    right: 0px;
    animation: starFloat 2.5s infinite alternate-reverse ease-in-out;
}

@keyframes heartBeatClay {
    0% { transform: scale(1); }
    50% { transform: scale(1.15) rotate(4deg); }
    100% { transform: scale(1); }
}

@keyframes starFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-8px) rotate(45deg); }
}

.thankyou-header h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-top: 10px;
}

.thankyou-header .subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-top: 5px;
}

/* Beautiful Receipt Card inside Thank You screen */
.receipt-card {
    background-color: var(--bg-main);
    border-radius: var(--border-radius-md);
    padding: 22px;
    text-align: left;
    box-shadow: inset 3px 3px 8px rgba(0,0,0,0.05),
                inset -3px -3px 8px rgba(255,255,255,0.8);
    border: 2px solid rgba(224, 122, 95, 0.08);
}

.receipt-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(61, 64, 91, 0.08);
    padding-bottom: 6px;
}

.receipt-scroll {
    max-height: 160px;
    overflow-y: auto;
    padding-right: 5px;
}

.receipt-item-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.receipt-item-row span:first-child {
    font-weight: 500;
}

.receipt-item-row span:last-child {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
}

.receipt-divider {
    border-top: 2px dashed rgba(224, 122, 95, 0.15);
    margin: 15px 0;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    color: var(--text-dark);
}

.receipt-row.font-bold {
    font-size: 1.25rem;
    font-weight: 700;
}

.receipt-row.font-bold span:last-child {
    font-family: 'Fredoka', sans-serif;
    color: var(--primary);
}

.receipt-row.address {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 15px;
    flex-direction: column;
    gap: 4px;
}

.receipt-row.address span:last-child {
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.6);
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
}

.alert-notice {
    font-size: 0.85rem;
    background-color: rgba(224, 122, 95, 0.05);
    border-left: 4px solid var(--primary);
    padding: 12px 15px;
    border-radius: var(--border-radius-sm);
    color: var(--text-dark);
    text-align: left;
    line-height: 1.5;
}

.alert-notice i {
    color: var(--primary);
    margin-right: 4px;
}

/* Animations scale up bounce */
@keyframes scaleUpBounce {
    0% { transform: scale(0.7); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* --- Policies Modal Overlay --- */
.policy-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(61, 64, 91, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1800;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: opacity 0.3s ease;
}

.policy-overlay.active {
    display: flex;
}

.policy-card {
    background-color: var(--white);
    border-radius: var(--clay-border-card);
    box-shadow: var(--clay-shadow-lg);
    padding: 40px;
    max-width: 650px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: scaleUpBounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.policy-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--bg-main);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--clay-shadow-sm);
    transition: var(--transition-smooth);
}

.policy-close-btn:hover {
    color: var(--primary);
    transform: scale(1.08);
}

.policy-tabs {
    display: flex;
    gap: 10px;
    border-bottom: 2px dashed rgba(61, 64, 91, 0.08);
    padding-bottom: 15px;
    flex-wrap: wrap;
}

.policy-tab-btn {
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    background-color: var(--bg-main);
    color: var(--text-dark);
    padding: 8px 18px;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: var(--clay-shadow-sm);
    transition: var(--transition-smooth);
}

.policy-tab-btn:hover {
    transform: translateY(-2px);
    color: var(--primary);
}

.policy-tab-btn.active {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--clay-btn-shadow);
}

.policy-content-scroll {
    max-height: 250px;
    overflow-y: auto;
    padding-right: 10px;
}

.policy-tab-content h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.policy-tab-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.5;
}

.policy-tab-content ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.policy-tab-content ul li {
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
    padding-left: 18px;
}

.policy-tab-content ul li::before {
    content: "•";
    color: var(--primary);
    font-size: 1.4rem;
    position: absolute;
    left: 0;
    top: -2px;
}

/* --- Footer --- */
footer {
    background-color: var(--bg-inner);
    border-top: 2px solid rgba(224, 122, 95, 0.08);
    padding: 60px 0 20px 0;
    margin-top: 60px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.footer-brand h3 span {
    color: var(--primary);
}

.footer-brand p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.footer-links a {
    color: var(--text-light);
    font-size: 0.95rem;
    width: fit-content;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-contact .policy-link {
    color: var(--text-light);
    font-size: 0.95rem;
    display: block;
    width: fit-content;
}

.footer-contact .policy-link:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-contact p i {
    color: var(--primary);
    margin-right: 8px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    background-color: var(--white);
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--clay-shadow-sm);
    font-size: 1.1rem;
}

.social-icons a:hover {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--clay-btn-shadow);
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 20px 25px 0 25px;
    border-top: 1px solid rgba(61, 64, 91, 0.08);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ==========================================================================
   --- Mobile Responsiveness & Layout Shifts Media Queries ---
   ========================================================================== */

@media (max-width: 992px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        margin-top: 100px;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .product-form .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }
    
    .nav-links {
        display: none; /* Hide nav links on small mobile, keep logo and cart */
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .admin-card {
        padding: 25px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .cart-drawer {
        max-width: 100%;
        right: -100%;
    }

    .thankyou-card {
        padding: 30px 20px;
    }

    .thankyou-header h2 {
        font-size: 1.7rem;
    }

    /* Policies modal updates */
    .policy-card {
        padding: 25px 20px;
        margin: 10px;
        max-height: 90vh;
    }
    
    .policy-tabs {
        overflow-x: auto;
        white-space: nowrap;
        display: flex;
        padding-bottom: 10px;
        border-bottom: 1px dashed rgba(61, 64, 91, 0.08);
        -webkit-overflow-scrolling: touch;
    }
    
    .policy-tab-btn {
        flex-shrink: 0;
    }

    /* Tab table conversion to stacked cards for mobile devices */
    .orders-table, 
    .orders-table thead, 
    .orders-table tbody, 
    .orders-table th, 
    .orders-table td, 
    .orders-table tr {
        display: block;
    }
    
    .orders-table thead {
        display: none; /* Hide standard row headers */
    }
    
    .orders-table tr {
        background-color: var(--white);
        margin-bottom: 22px;
        border-radius: var(--border-radius-md);
        box-shadow: var(--clay-shadow-sm);
        padding: 15px;
        border: 2px solid rgba(224, 122, 95, 0.05);
    }
    
    .orders-table td {
        border-bottom: none;
        padding: 8px 0;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .orders-table td::before {
        content: attr(data-label);
        font-family: 'Fredoka', sans-serif;
        font-weight: 700;
        font-size: 0.8rem;
        color: var(--primary);
        margin-bottom: 4px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .orders-table td[data-label="Image"] img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr; /* Single column on compact portrait cellphones */
        gap: 25px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .about-section {
        margin-top: 30px;
        margin-bottom: 20px;
    }
}
