/* Core Styles and Variables for IKKO Digital E-commerce Store */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #121c30;       /* Dark premium navy */
    --primary-light: #1d2c49;
    --accent: #e52e2e;        /* Sale/Alert Crimson */
    --accent-green: #10b981;  /* Delivered status green */
    --accent-amber: #f59e0b;  /* Pending status amber */
    --bg-main: #f8fafc;       /* Soft light background */
    --bg-card: #ffffff;
    --text-main: #0f172a;     /* Slate-900 text */
    --text-muted: #64748b;    /* Slate-500 text */
    --border-color: rgba(0, 0, 0, 0.05); /* Softer borders */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.03), 0 2px 4px -1px rgba(0,0,0,0.02);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.03), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --shadow-glow: 0 0 15px rgba(229, 46, 46, 0.15);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-premium: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button, input, select, textarea {
    font-family: inherit;
}

/* --- ANNOUNCEMENT BAR --- */
.announcement-bar {
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 10px 15px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.announcement-bar__text {
    display: inline-block;
}

/* --- SUB HEADER NAVIGATION --- */
.sub-header-nav {
    background-color: #191547;
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sub-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8px 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.sub-header-container a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}
.sub-header-container a:hover {
    color: white;
}

/* --- HEADER --- */
.main-header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text-main);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.01);
    transition: var(--transition-premium);
}
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.logo-link {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--primary);
    transition: var(--transition-fast);
}
.logo-link:hover {
    color: var(--accent);
}

/* Search Bar */
.search-bar-container {
    flex: 1;
    max-width: 650px;
    position: relative;
}
.search-form {
    display: flex;
    background-color: #f1f5f9; /* Soft grey background */
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: 8px; /* Slightly more rounded corners */
    overflow: hidden;
    height: 44px;
    transition: var(--transition-premium);
}
.search-form:focus-within {
    background-color: #ffffff;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(229, 46, 46, 0.1);
}
.search-form input {
    width: 100%;
    padding: 10px 15px;
    background: transparent;
    border: none;
    outline: none;
    color: #1c1d1d;
    font-size: 0.95rem;
}
.search-form input::placeholder {
    color: #7c7c7c;
}
.search-btn {
    background-color: #e52e2e;
    border: none;
    width: 60px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-fast);
}
.search-btn:hover {
    background-color: #c42424;
}

/* Search Results Dropdown */
.search-results-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 110;
}
.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-fast);
}
.search-result-item:last-child {
    border-bottom: none;
}
.search-result-item:hover {
    background-color: var(--bg-main);
}
.search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    background-color: #fff;
    border-radius: 4px;
}
.search-result-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.search-result-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.search-result-prices {
    display: flex;
    gap: 10px;
    font-size: 0.85rem;
    margin-top: 4px;
}
.search-result-sale {
    color: var(--accent);
    font-weight: 700;
}
.search-result-compare {
    color: var(--text-muted);
    text-decoration: line-through;
}
.search-no-results {
    padding: 15px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
.header-action-btn {
    background: transparent;
    border: none;
    color: #1c1d1d;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
    padding: 8px 12px;
}
.header-action-btn:hover {
    color: var(--accent);
}
.cart-toggle-btn {
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #1c1d1d;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.cart-toggle-btn:hover {
    background-color: #edf2f7;
    border-color: #cbd5e0;
    transform: scale(1.05);
    color: var(--accent);
}
.cart-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: #e52e2e;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- LOWER NAVIGATION --- */
.lower-nav {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
}
.lower-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 30px;
}
.nav-item {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-main);
    padding: 15px 0;
    letter-spacing: 0.8px;
    position: relative;
    transition: color var(--transition-fast);
    text-transform: uppercase;
}
.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-item:hover {
    color: var(--accent);
}
.nav-item:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* --- BANNER / HERO SECTION --- */
.hero-banner {
    background-image: url('https://look-10287.myshopify.com/cdn/shop/files/4_537238ff-7281-4a97-8aa3-daae7708297c_1200x1200_crop_center.jpg?v=1778480433');
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(18, 28, 48, 0.15) 0%, rgba(18, 28, 48, 0.5) 100%);
    pointer-events: none;
    z-index: 1;
}
.hero-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}
.hero-banner h1 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.25);
}
.hero-banner p {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.hero-btn {
    background-color: #ffffff;
    color: var(--primary);
    padding: 14px 40px;
    border-radius: 30px; /* Modern pill shape */
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    transition: var(--transition-premium);
}
.hero-btn:hover {
    background-color: var(--accent);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(229, 46, 46, 0.3);
}

/* --- TABS / FILTER --- */
.tabs-container {
    max-width: 1400px;
    margin: 40px auto 25px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 12px;
}
.tab-btn {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 8px 24px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 30px; /* Pill tabs */
    transition: var(--transition-premium);
    box-shadow: 0 2px 6px rgba(0,0,0,0.01);
}
.tab-btn:hover {
    color: var(--primary);
    border-color: rgba(0, 0, 0, 0.1);
    background-color: #f8fafc;
}
.tab-btn.active {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(18, 28, 48, 0.12);
}

/* --- PRODUCT GRID --- */
.storefront-section {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 20px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Product Card */
.product-card {
    background-color: var(--bg-card);
    border-radius: 12px; /* Smoother corners */
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-premium);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(18, 28, 48, 0.08);
    border-color: rgba(18, 28, 48, 0.08);
}
.card-badge-sale {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px; /* Pill badge */
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(229, 46, 46, 0.25);
}
.product-card-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    background-color: #fafbfc;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}
.product-card-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform var(--transition-premium);
}
.product-card:hover .product-card-img-wrapper img {
    transform: scale(1.04);
}
.product-card-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-card-prices {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.product-card-sale-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent);
}
.product-card-compare-price {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
}
.product-card-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em;
    transition: color var(--transition-fast);
}
.product-card-title a {
    color: inherit;
    transition: color var(--transition-fast);
}
.product-card-title a:hover {
    color: var(--accent);
}
.product-card-actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}
.add-to-cart-btn {
    flex: 1;
    background-color: var(--primary);
    color: white;
    border: 1px solid var(--primary);
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 30px; /* Pill button */
    cursor: pointer;
    transition: var(--transition-premium);
    text-align: center;
}
.add-to-cart-btn:hover:not(:disabled) {
    background-color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 4px 15px rgba(229, 46, 46, 0.2);
    transform: translateY(-1px);
}
.add-to-cart-btn:disabled {
    background-color: #e2e8f0;
    border-color: #e2e8f0;
    color: #a0aec0;
    cursor: not-allowed;
}
.view-details-btn {
    background-color: transparent;
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Circular details icon */
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-premium);
}
.view-details-btn:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    color: white;
    transform: rotate(90deg); /* Playful micro-animation */
}

/* --- CART DRAWER PANEL --- */
.cart-drawer-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    visibility: hidden;
    transition: visibility 0.3s;
}
.cart-drawer-wrapper.active {
    visibility: visible;
}
.cart-drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(18, 28, 48, 0.3); /* Navy transparent tint */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
}
.cart-drawer-wrapper.active .cart-drawer-overlay {
    opacity: 1;
}
.cart-drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background-color: white;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    transform: translate3d(100%, 0, 0);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}
.cart-drawer-wrapper.active .cart-drawer {
    transform: translate3d(0, 0, 0);
}
.cart-drawer-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart-drawer-header h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
}
.cart-close-btn {
    background: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
}
.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}
.empty-cart-view {
    text-align: center;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.empty-cart-view p {
    color: var(--text-muted);
    font-weight: 500;
}
.continue-shopping-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cart-item {
    display: flex;
    gap: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}
.cart-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.cart-item-img {
    width: 80px;
    height: 80px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background-color: white;
    flex-shrink: 0;
    overflow: hidden;
}
.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}
.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.cart-item-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 6px;
}
.cart-item-title:hover {
    color: var(--accent);
}
.cart-item-prices {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.cart-item-price {
    font-weight: 700;
    color: var(--accent);
}
.cart-item-compare {
    color: var(--text-muted);
    text-decoration: line-through;
}
.cart-item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}
.qty-selector {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}
.qty-selector button {
    background-color: var(--bg-main);
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: var(--transition-fast);
}
.qty-selector button:hover {
    background-color: var(--border-color);
}
.qty-selector input {
    width: 40px;
    height: 30px;
    border: none;
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    background-color: white;
}
.cart-remove-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: underline;
}
.cart-remove-btn:hover {
    color: var(--accent);
}
.cart-drawer-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-main);
}
.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.subtotal-amount {
    color: var(--accent);
    font-size: 1.2rem;
}
.shipping-info-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 15px;
}
.checkout-btn {
    display: block;
    background-color: var(--accent);
    color: white;
    text-align: center;
    padding: 14px;
    border-radius: 6px;
    font-weight: 700;
    box-shadow: var(--shadow-glow);
    transition: background-color 0.2s;
}
.checkout-btn:hover {
    background-color: #c42424;
}

/* --- PRODUCT DETAIL PAGE (PDP) --- */
.pdp-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.pdp-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 50px;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    max-width: 100%;
}
.pdp-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}
.pdp-main-image {
    width: 100%;
    aspect-ratio: 1;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pdp-main-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 20px;
}
.pdp-thumbnails {
    display: flex;
    gap: 15px;
    overflow-x: auto;
}
.pdp-thumb {
    width: 80px;
    height: 80px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-fast);
}
.pdp-thumb.active {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
}
.pdp-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 5px;
}

.pdp-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.pdp-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
}
.pdp-reviews {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.stars {
    color: #f59e0b;
    font-size: 1.1rem;
}
.review-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.pdp-prices {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}
.pdp-sale-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}
.pdp-compare-price {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-decoration: line-through;
}
.pdp-badge-save {
    background-color: var(--accent);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
}
.pdp-description {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 30px;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}
.pdp-description table {
    width: 100% !important;
    max-width: 100% !important;
    table-layout: auto !important;
    border-collapse: collapse !important;
    margin-bottom: 20px !important;
}
.pdp-description th,
.pdp-description td {
    padding: 12px 15px;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
    vertical-align: top;
}
.pdp-description tr th:first-child:not(:last-child),
.pdp-description tr td:first-child:not(:last-child) {
    width: 30% !important;
    min-width: 180px !important;
    font-weight: 700;
    color: var(--text-main);
}
.pdp-description tr td:last-child {
    width: auto !important;
}
.pdp-description p {
    margin-bottom: 15px;
}
.pdp-description img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* --- Rich Product Details Page Description Styles --- */
.rich-pdp-description {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.7;
    margin-top: 15px;
}
.pdp-intro-para {
    font-size: 0.95rem;
    margin-bottom: 25px;
    color: #475569;
}
.pdp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 25px;
}
.pdp-feature-card {
    background-color: #f8fafc;
    border: 1px solid rgba(0,0,0,0.03);
    border-radius: 8px;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pdp-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    border-color: rgba(0, 0, 0, 0.06);
}
.pdp-feature-card .feat-icon {
    font-size: 1.4rem;
}
.pdp-feature-card .feat-text {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.2px;
}
.pdp-desc-section {
    margin-bottom: 25px;
}
.pdp-desc-section h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 6px;
}
.pdp-highlights-list {
    list-style: none;
    padding: 0;
}
.pdp-highlights-list li {
    font-size: 0.92rem;
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #475569;
}
.pdp-highlights-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
    top: -2px;
}
.pdp-box-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}
.pdp-box-list li {
    font-size: 0.9rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pdp-box-list .check-bullet {
    color: var(--accent-green);
    font-weight: bold;
}
@media (max-width: 480px) {
    .pdp-features-grid {
        grid-template-columns: 1fr;
    }
    .pdp-box-list {
        grid-template-columns: 1fr;
    }
}
.pdp-actions-card {
    background-color: var(--bg-main);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}
.pdp-actions-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}
.pdp-qty-label {
    font-weight: 600;
    font-size: 0.9rem;
}
.pdp-btns-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pdp-add-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}
.pdp-add-btn:hover {
    background-color: var(--primary-light);
}
.pdp-buy-btn {
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--shadow-glow);
    transition: background-color 0.2s;
}
.pdp-buy-btn:hover {
    background-color: #c42424;
}
.trust-badges {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}
.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}
.trust-badge-item svg {
    margin-bottom: 6px;
    color: var(--primary);
}

/* Specs Table */
.pdp-specs-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin-bottom: 30px;
}
.specs-table td {
    padding: 10px 15px;
    border-bottom: 1px solid var(--border-color);
}
.specs-table td.spec-name {
    font-weight: 600;
    color: var(--text-muted);
    width: 30%;
    background-color: var(--bg-main);
}

/* --- CHECKOUT PAGE --- */
.checkout-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.checkout-card {
    background-color: white;
    border-radius: 12px; /* Smoother premium corners */
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 35px;
    box-shadow: 0 10px 30px rgba(18, 28, 48, 0.03); /* Soft elevation shadow */
}
.checkout-card h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group.full-width {
    grid-column: span 2;
}
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}
.form-group input, .form-group textarea, .form-group select {
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    background-color: #f8fafc; /* Softer background */
    transition: var(--transition-premium);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    background-color: #ffffff;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(229, 46, 46, 0.10);
}
.payment-methods-selector {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}
.payment-option {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: var(--transition-fast);
}
.payment-option.active {
    border-color: var(--accent);
    background-color: rgba(229, 46, 46, 0.03);
}
.payment-option input {
    accent-color: var(--accent);
}
.payment-option-label {
    display: flex;
    flex-direction: column;
}
.payment-option-title {
    font-weight: 700;
    font-size: 0.95rem;
}
.payment-option-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Sidebar Checkout Summary */
.checkout-summary-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}
.checkout-summary-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.checkout-summary-item img {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    object-fit: contain;
    background-color: white;
}
.checkout-summary-item-info {
    flex: 1;
    font-size: 0.85rem;
    font-weight: 500;
}
.checkout-summary-item-title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.checkout-summary-item-qty {
    color: var(--text-muted);
}
.checkout-summary-item-price {
    font-weight: 700;
    font-size: 0.9rem;
}
.summary-totals {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.summary-row.total {
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-main);
}
.summary-row.total .price-amount {
    color: var(--accent);
}
.place-order-btn {
    width: 100%;
    margin-top: 25px;
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: var(--shadow-glow);
    transition: background-color 0.2s;
}
.place-order-btn:hover {
    background-color: #c42424;
}

/* Success Modal */
.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.6);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.success-modal {
    background-color: white;
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: modalScaleUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes modalScaleUp {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.success-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.success-modal h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}
.success-modal p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}
.order-tracking-num {
    background-color: var(--bg-main);
    border: 1px dashed var(--border-color);
    padding: 10px 15px;
    font-family: monospace;
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary);
    border-radius: 4px;
    margin-bottom: 25px;
}
.modal-home-btn {
    background-color: var(--primary);
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 700;
    display: inline-block;
    transition: var(--transition-fast);
}
.modal-home-btn:hover {
    background-color: var(--accent);
}

/* --- ADMIN PANEL PAGE --- */
.admin-container {
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 30px;
}

/* Sidebar Menu */
.admin-sidebar {
    background-color: var(--primary);
    color: white;
    border-radius: 10px;
    padding: 25px 15px;
    height: fit-content;
    box-shadow: var(--shadow-md);
}
.admin-sidebar-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: var(--accent);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}
.admin-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.admin-menu-item button {
    width: 100%;
    background: transparent;
    border: none;
    color: #cbd5e0;
    padding: 12px 15px;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 12px;
}
.admin-menu-item button:hover {
    background-color: rgba(255,255,255,0.05);
    color: white;
}
.admin-menu-item.active button {
    background-color: var(--accent);
    color: white;
    font-weight: 600;
}

/* Content Area */
.admin-content {
    background-color: white;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}
.admin-tab-section {
    display: none;
}
.admin-tab-section.active {
    display: block;
}
.admin-tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}
.admin-tab-header h1 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
}

/* KPI Dashboard Cards */
.kpi-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.kpi-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-main) 100%);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}
.kpi-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.kpi-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}
.kpi-footer {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 6px;
}

/* Tables styling */
.table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border-color);
    border-radius: 6px;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    text-align: left;
}
.admin-table th {
    background-color: var(--bg-main);
    color: var(--primary);
    font-weight: 700;
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
}
.admin-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}
.admin-table tr:last-child td {
    border-bottom: none;
}
.admin-table tr:hover {
    background-color: rgba(247, 249, 252, 0.7);
}

/* Status Badges */
.badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
    display: inline-block;
}
.badge-pending {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--accent-amber);
    border: 1px solid rgba(245, 158, 11, 0.2);
}
.badge-delivered {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
    border: 1px solid rgba(16, 185, 129, 0.2);
}
.badge-cancelled {
    background-color: rgba(229, 46, 46, 0.1);
    color: var(--accent);
    border: 1px solid rgba(229, 46, 46, 0.2);
}

/* Admin Action Buttons */
.btn {
    padding: 8px 16px;
    font-weight: 600;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}
.btn-primary {
    background-color: var(--accent);
    color: white;
}
.btn-primary:hover {
    background-color: #c42424;
}
.btn-secondary {
    background-color: var(--bg-main);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}
.btn-secondary:hover {
    background-color: var(--border-color);
}
.btn-danger {
    background-color: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 6px 12px;
}
.btn-danger:hover {
    background-color: var(--accent);
    color: white;
}
.btn-edit {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 6px 12px;
    margin-right: 6px;
}
.btn-edit:hover {
    background-color: var(--primary);
    color: white;
}

.admin-product-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.6);
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-overlay.active {
    display: flex;
}
.modal-card {
    background-color: white;
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    animation: modalScaleUp 0.2s ease;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}
.modal-card form {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
    min-height: 0;
}
.modal-header {
    background-color: var(--primary);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
}
.modal-close-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}
.modal-body {
    padding: 25px;
    overflow-y: auto;
    flex: 1;
}

/* Dynamic row styles for image fields */
.image-url-row {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
    align-items: center;
}
.image-url-row input {
    flex: 1;
}
.btn-remove-row {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
    width: 38px;
    height: 38px;
    border-radius: 4px;
    font-size: 1.5rem;
    font-weight: 300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}
.btn-remove-row:hover {
    background-color: var(--accent);
    color: white;
}
.modal-footer {
    padding: 15px 20px;
    background-color: var(--bg-main);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* --- FOOTER --- */
.main-footer {
    background-color: var(--primary);
    color: #cbd5e0;
    padding: 60px 20px 20px;
    margin-top: 60px;
    border-top: 5px solid var(--accent);
}
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h3 {
    font-family: var(--font-heading);
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul li a {
    transition: var(--transition-fast);
}
.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}
.footer-about p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.badge-cod, .badge-shipping {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    border-left: 3px solid var(--accent);
}
.footer-newsletter p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.newsletter-form {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
}
.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    outline: none;
    font-size: 0.9rem;
}
.newsletter-form button {
    background-color: var(--accent);
    color: white;
    border: none;
    padding: 0 20px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
}
.newsletter-form button:hover {
    background-color: #c42424;
}
.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .announcement-bar {
        font-size: 0.7rem;
        padding: 8px 10px;
        letter-spacing: 0.2px;
    }
    .announcement-bar__text {
        font-size: 0.7rem;
    }
    .header-container {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        row-gap: 12px;
        column-gap: 15px;
        padding: 12px 15px;
    }
    .logo-link {
        grid-column: 1 / span 2;
        font-size: 1.25rem;
        text-align: center;
    }
    .search-bar-container {
        grid-column: 1;
        width: 100%;
        max-width: 100%;
    }
    .header-actions {
        grid-column: 2;
        justify-content: flex-end;
        margin: 0;
        padding: 0;
        gap: 10px;
    }
    .lower-nav-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px 15px;
        padding: 8px 15px;
    }
    .nav-item {
        font-size: 0.8rem;
        padding: 8px 0;
    }
    .hero-banner h1 {
        font-size: 2.2rem;
    }
    .pdp-grid {
        grid-template-columns: minmax(0, 1fr);
        padding: 20px;
        gap: 30px;
        max-width: 100%;
        overflow: hidden;
    }
    .pdp-images {
        max-width: 100%;
        overflow: hidden;
    }
    .pdp-thumbnails {
        max-width: 100%;
    }
    .pdp-description,
    .pdp-description * {
        max-width: 100% !important;
    }
    .pdp-description div,
    .pdp-description span,
    .pdp-description p {
        width: auto !important;
    }
    .pdp-description table {
        width: 100% !important;
        max-width: 100% !important;
        border-collapse: collapse !important;
        margin-bottom: 20px !important;
        table-layout: auto !important;
    }
    .pdp-description th,
    .pdp-description td {
        padding: 10px 10px !important;
        font-size: 0.9rem !important;
        border-bottom: 1px solid var(--border-color) !important;
        word-break: break-word !important;
        text-align: left !important;
        vertical-align: top !important;
    }
    .pdp-description tr th:first-child:not(:last-child),
    .pdp-description tr td:first-child:not(:last-child) {
        width: 35% !important;
        min-width: 125px !important;
        font-weight: 700 !important;
        color: var(--text-main) !important;
    }
    .pdp-description tr td:last-child {
        width: auto !important;
    }
    .pdp-description ul {
        margin: 15px 0 15px 20px !important;
        padding: 0 !important;
    }
    .pdp-description li {
        margin-bottom: 10px !important;
        line-height: 1.6 !important;
        font-size: 0.92rem !important;
    }
    .pdp-description img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
    .trust-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 25px;
    }
    .admin-container {
        grid-template-columns: 1fr;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .hero-banner {
        padding: 50px 15px;
    }
    .hero-banner h1 {
        font-size: 1.8rem;
    }
}

/* --- ABOUT & CONTACT FORM STYLING --- */
.contact-page-content {
    margin-top: 30px;
    max-width: 650px;
}
.form-fields-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-field {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 20px;
    gap: 8px;
}
.form-field--half {
    margin-bottom: 0;
}
.form-field-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.95rem;
    outline: none;
    background-color: white;
    color: var(--text-main);
    transition: var(--transition-fast);
}
.form-field-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(229, 46, 46, 0.15);
}
.form-field-textarea {
    min-height: 120px;
    resize: vertical;
}
.form-field-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.form-action-row {
    margin-top: 25px;
}
.contact-form-button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color var(--transition-fast);
}
.contact-form-button:hover {
    background-color: var(--accent);
}

@media (max-width: 576px) {
    .form-fields-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .form-field--half {
        margin-bottom: 20px;
    }
}

/* Sold Out and Professional E-commerce Utility Styles */
.pdp-add-btn:disabled, 
.pdp-buy-btn:disabled,
.add-to-cart-btn:disabled {
    background-color: #cbd5e0 !important;
    color: #718096 !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
    transform: none !important;
    pointer-events: none !important;
}

.pdp-badge-soldout {
    background-color: #e53e3e;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    margin-left: 8px;
    text-transform: uppercase;
}

.card-badge-soldout {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #e53e3e;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 10;
    text-transform: uppercase;
}

/* --- REDESIGNED CHECKOUT & WIZARD STYLES --- */
.checkout-progress-wrapper {
    grid-column: span 2;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}
.progress-bar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}
.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
    flex: 1;
}
.progress-step .step-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #edf2f7;
    color: #718096;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}
.progress-step .step-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
}
.progress-step.active .step-icon {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(18, 28, 48, 0.1);
}
.progress-step.active .step-label {
    color: var(--primary);
    font-weight: 700;
}
.progress-step.completed .step-icon {
    background-color: var(--accent-green);
    color: white;
    border-color: var(--accent-green);
}
.progress-step.completed .step-label {
    color: var(--accent-green);
}
.progress-line {
    height: 3px;
    background-color: #e2e8f0;
    flex-grow: 1;
    margin: 0 -20px;
    position: relative;
    top: -10px;
    z-index: 1;
}
.progress-step.completed + .progress-line {
    background-color: var(--accent-green);
}

/* Banner stylings */
.promo-discount-banner {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%); /* soft warm amber */
    border: 1px solid #fde68a;
    border-radius: 12px;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.08);
    margin-bottom: 25px;
}
.banner-message {
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 700;
    color: #b45309; /* warm amber text */
    text-align: center;
    flex: 1;
    letter-spacing: 0.5px;
}
.banner-decor {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite ease-in-out;
}
.banner-decor.right {
    animation-delay: 1s;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Redesigned Payment Option Cards */
.payment-method-options-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}
.payment-app-row-card {
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px; /* Matching brand border-radius */
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: var(--transition-premium);
    box-shadow: 0 2px 6px rgba(0,0,0,0.01);
}
.payment-app-row-card:hover {
    border-color: rgba(0,0,0,0.12);
    box-shadow: 0 8px 25px rgba(0,0,0,0.03);
    transform: translateY(-2px);
}
.payment-app-row-card.active {
    border-color: var(--accent);
    background-color: rgba(229, 46, 46, 0.015);
    box-shadow: 0 8px 25px rgba(229, 46, 46, 0.05);
}
.app-info-left {
    display: flex;
    align-items: center;
    gap: 18px;
}
.app-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.app-logo.purple-bg {
    background-color: #5f259f;
}
.app-logo.lightblue-bg {
    background-color: #f0faff;
    border: 1px solid #cbebff;
}
.app-logo.orange-border {
    border: 2px solid #ff8c00;
    background-color: #fffaf0;
}
.app-texts {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.app-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--primary);
}
.app-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}
.app-arrow-right {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f1f5f9;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-premium);
}
.payment-app-row-card:hover .app-arrow-right {
    color: var(--accent);
    background-color: rgba(229, 46, 46, 0.08);
    transform: translateX(3px);
}
.payment-app-row-card.active .app-arrow-right {
    background-color: var(--accent);
    color: white;
    transform: scale(1.05);
}

/* Price Details Box styling */
.price-details-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    margin-bottom: 15px;
}
.price-details-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
}
.price-row.highlight-green {
    color: #38a169;
}
.price-row-value {
    font-weight: 700;
}
.text-green {
    color: #38a169;
    font-weight: 700;
}

/* Action buttons */
.btn-primary-action-orange {
    background: linear-gradient(135deg, #ff9200 0%, #ff7600 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(255, 118, 0, 0.25);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}
.btn-primary-action-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 118, 0, 0.35);
}
.btn-primary-action-orange:active {
    transform: translateY(0);
}
.link-edit-btn {
    background: transparent;
    border: none;
    color: #2b6cb0;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
}

/* Verification Modal Overlay */
.verification-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
}
.verification-modal {
    background-color: white;
    width: 100%;
    max-width: 440px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    animation: modalScaleUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.vmodal-header {
    background-color: #f7fafc;
    border-bottom: 1px solid var(--border-color);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.vmodal-title-box {
    display: flex;
    align-items: center;
    gap: 12px;
}
.vmodal-title-box h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary);
    margin: 0;
}
.vmodal-close-x {
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
}
.vmodal-body {
    padding: 25px;
    max-height: 80vh;
    overflow-y: auto;
}
.vmodal-instruction {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4a5568;
    text-align: center;
    margin-bottom: 15px;
}
.vmodal-qr-frame {
    background-color: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px;
    display: block;
    margin: 0 auto 20px auto;
    width: fit-content;
    box-shadow: var(--shadow-sm);
}
.vmodal-qr-frame img {
    width: 200px;
    height: 200px;
    display: block;
}
.utr-label {
    display: block;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 8px;
}
.vmodal-utr-form input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1.05rem;
    font-family: monospace;
    letter-spacing: 2px;
    text-align: center;
    box-sizing: border-box;
    font-weight: 700;
    outline: none;
    transition: all 0.2s ease;
}
.vmodal-utr-form input:focus {
    border-color: #ff7600;
    box-shadow: 0 0 0 3px rgba(255, 118, 0, 0.15);
}
.utr-subtext {
    font-size: 0.76rem;
    color: var(--text-muted);
    margin-top: 6px;
    line-height: 1.4;
}

/* Sticky Bottom Action Bar */
.desktop-checkout-action-wrap {
    display: block;
}
.mobile-sticky-checkout-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -3px 15px rgba(0,0,0,0.08);
    display: none; /* Hidden on desktop */
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    z-index: 100;
    border-top: 1px solid var(--border-color);
}
.price-summary-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.strikethrough-original {
    font-size: 0.8rem;
    text-decoration: line-through;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 2px;
}
.final-price-bold {
    font-size: 1.35rem;
    font-weight: 900;
    color: #1a1a1a;
    font-family: var(--font-heading);
}
.btn-orange-submit {
    background: linear-gradient(135deg, #ffa800 0%, #ff6f00 100%);
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(255, 111, 0, 0.2);
    transition: all 0.2s ease;
}
.btn-orange-submit:hover {
    box-shadow: 0 6px 15px rgba(255, 111, 0, 0.35);
    transform: translateY(-1px);
}

/* Layout Grid adjustment */
.checkout-layout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    width: 100%;
}

@media (max-width: 992px) {
    .checkout-layout-grid {
        grid-template-columns: 1fr;
    }
    .checkout-sidebar-summary {
        order: -1;
    }
}
@media (max-width: 768px) {
    .desktop-checkout-action-wrap {
        display: none;
    }
    .mobile-sticky-checkout-bar.active-step2 {
        display: flex; /* Show sticky bar on mobile Step 2 */
    }
    .checkout-container {
        padding-bottom: 90px;
    }
}

/* Automated Bank Handshake Loader */
.bank-verification-loader {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.verification-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ff7600;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Animated success checkmark */
.checkmark-circle-svg {
    width: 70px;
    height: 70px;
    stroke: #48bb78;
    stroke-width: 4;
    stroke-miterlimit: 10;
    margin: 0 auto;
}
.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 4;
    stroke-miterlimit: 10;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

/* Micro-animations */
@keyframes cart-bounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}
.cart-bounce-anim {
    animation: cart-bounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}


