/* ==========================================================================
   Honey Pack Shop - Clean Light Luxury Design System
   ========================================================================== */

:root {
    --color-bg: #fcfbf9;
    --color-surface: #ffffff;
    --color-surface-hover: #f9f8f4;
    --color-border: #e5e7eb;
    --color-border-dark: #d1d5db;
    --color-text: #1a1a1a;
    --color-text-muted: #6b7280;
    --color-primary: #111111;
    --color-primary-hover: #2a2a2a;
    --color-accent: #d49a00;
    --color-accent-light: #fffbeb;
    --color-accent-border: #fcd34d;
    --color-badge: #e67e22;
    --color-blue: #0284c7;
    --color-blue-bg: #f0f9ff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

/* Zero Mobile Overflow Reset without breaking Sticky Positioning */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: clip;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: clip;
    position: relative;
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Hide HTML5 Number Input Spinners (Up/Down Arrows) on PC & Mobile */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    margin: 0; 
}

input[type=number] {
    -moz-appearance: textfield;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text);
    font-weight: 700;
    margin-top: 0;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    color: #ffffff;
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: #ffffff;
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

/* Top Announcement Bar */
.top-announcement-bar {
    background-color: #111111;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.5px;
    padding: 8px 0;
    text-align: center;
    text-transform: uppercase;
}

/* Sticky Header */
.site-header {
    background-color: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Desktop Logo Height (41px) */
.logo-img {
    height: 41px;
    width: auto;
    aspect-ratio: 2630 / 364;
    object-fit: contain;
    border-radius: 0 !important;
    display: block;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #4b5563;
}

.nav-link:hover, .nav-link.active {
    color: var(--color-text);
}

.nav-link.highlight {
    color: var(--color-accent);
    font-weight: 700;
}

.mobile-contact-nav {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 6px;
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-badge-count {
    position: absolute;
    top: -2px;
    right: -4px;
    background-color: var(--color-accent);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

/* Hero Section */
.hero-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fffdfa 0%, #f7f3ea 100%);
    border-bottom: 1px solid var(--color-border);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background-color: var(--color-accent-light);
    color: var(--color-accent);
    border: 1px solid var(--color-accent-border);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image-wrap {
    position: relative;
    text-align: center;
}

.hero-img {
    max-height: 420px;
    margin: 0 auto;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1));
}

/* Trust Bar */
.trust-bar {
    padding: 30px 0;
    background-color: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-icon {
    font-size: 28px;
}

.trust-title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 2px;
}

.trust-desc {
    font-size: 13px;
    color: var(--color-text-muted);
}

/* Section Title */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    margin-bottom: 8px;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 16px;
}

/* Product Cards Grid - Full Frame Product Images */
.products-section {
    padding: 60px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.product-card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Thumbnail Frame - Maximize Product Image Area */
.product-card-thumb {
    position: relative;
    background-color: #faf9f6;
    padding: 8px;
    text-align: center;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card-thumb a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--color-badge);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    z-index: 2;
}

.product-card-img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    display: block;
}

.product-card-info {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
    align-items: center;
}

.product-card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
    text-align: center;
    display: block;
    width: 100%;
}

.product-card-sub {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    text-align: center;
    display: block;
    width: 100%;
}

.product-card-bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid #f3f4f6;
    text-align: center;
    width: 100%;
}

.product-card-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-primary);
    text-align: center;
    display: inline-block;
}

.product-card-price-orig {
    font-size: 13px;
    color: #9ca3af;
    text-decoration: line-through;
    margin-left: 6px;
}

/* Contact Page Responsive Layout */
.contact-grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.contact-card-box {
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px;
    box-sizing: border-box;
    width: 100%;
}

/* Product Detail Page Layout & Mobile Margin Protection */
.pdp-section {
    padding: 40px 16px;
    box-sizing: border-box;
}

.pdp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.pdp-gallery-wrap {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
}

.pdp-main-img {
    max-height: 420px;
    margin: 0 auto;
    object-fit: contain;
}

.pdp-details-wrap {
    display: flex;
    flex-direction: column;
}

.pdp-badge {
    display: inline-block;
    background-color: #fef3c7;
    color: #92400e;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    width: fit-content;
}

.pdp-title {
    font-size: 32px;
    margin-bottom: 6px;
}

.pdp-subtitle {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.pdp-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
}

.pdp-price {
    font-size: 32px;
    font-weight: 800;
}

.pdp-orig-price {
    font-size: 18px;
    color: #9ca3af;
    text-decoration: line-through;
}

.pdp-meta-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    background-color: #faf9f6;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.pdp-meta-table td {
    padding: 10px 14px;
    font-size: 14px;
    border-bottom: 1px solid #f3f4f6;
}

.pdp-meta-table td:first-child {
    font-weight: 700;
    width: 35%;
    color: #4b5563;
}

.pdp-quantity-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background-color: #ffffff;
}

.qty-btn {
    background: none;
    border: none;
    padding: 8px 14px;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
}

.qty-input {
    width: 44px;
    text-align: center;
    border: none;
    font-size: 15px;
    font-weight: 700;
}

/* ==========================================================================
   CART & CHECKOUT LAYOUT
   ========================================================================== */

.cart-checkout-page {
    padding: 40px 0 80px 0;
}

.cart-checkout-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 48px;
}

/* Left Column: Cart Summary */
.cart-summary-box {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 24px;
}

.cart-box-header {
    font-size: 28px;
    margin-bottom: 4px;
}

.cart-breadcrumb {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.cart-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 20px;
}

.cart-item-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cart-item-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background-color: #faf9f6;
    border-radius: var(--radius-sm);
    padding: 4px;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.cart-item-qty-select {
    padding: 2px 6px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 12px;
}

.cart-item-price {
    font-weight: 700;
    font-size: 15px;
}

.cart-totals-table {
    width: 100%;
    margin-bottom: 20px;
}

.cart-totals-table tr td {
    padding: 6px 0;
    font-size: 14px;
}

.cart-totals-table tr td:last-child {
    text-align: right;
    font-weight: 600;
}

.cart-totals-table tr.total-row td {
    font-size: 18px;
    font-weight: 800;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
}

.promo-coupon-section {
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
    margin-bottom: 16px;
}

.promo-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}

.promo-link {
    color: var(--color-blue);
    font-size: 13px;
    font-weight: 600;
}

.continue-shop-link {
    display: block;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 16px;
}

.continue-shop-link a {
    color: var(--color-blue);
    font-weight: 600;
}

/* Right Column: Multi-Step Checkout */
.checkout-box {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 32px;
}

.checkout-heading {
    font-size: 32px;
    margin-bottom: 8px;
}

.checkout-step-sub {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

/* Form Controls - Pixel Perfect Height Match for Inputs and Selects */
.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}

.form-input, .form-select {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid var(--color-border-dark);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    background-color: #ffffff;
    color: var(--color-text);
    box-sizing: border-box;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-select {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 14px top 50%;
    background-size: 10px auto;
    padding-right: 36px;
    cursor: pointer;
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(17, 17, 17, 0.1);
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 14px;
}

/* Shipping Country Tabs */
.shipping-country-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.country-tab-btn {
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 18px 12px;
    text-align: center;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.country-tab-btn.active {
    border-color: var(--color-blue);
    background-color: #f0f9ff;
}

.country-tab-icon {
    font-size: 24px;
    margin-bottom: 6px;
}

.country-tab-label {
    font-size: 14px;
    font-weight: 700;
}

/* Shipping Radio Option Box */
.radio-options-box {
    border: 1px solid var(--color-border-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 24px;
}

.radio-option-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid var(--color-border);
    cursor: pointer;
}

.radio-option-item:last-child {
    border-bottom: none;
}

.radio-option-item.selected {
    background-color: var(--color-blue-bg);
}

.radio-option-content {
    flex-grow: 1;
}

.radio-option-title {
    font-weight: 700;
    font-size: 14px;
}

.radio-option-note {
    font-size: 12px;
    color: var(--color-text-muted);
}

.radio-option-price {
    font-weight: 700;
    font-size: 14px;
}

/* Payment Instructions Notice */
.payment-notice-box {
    background-color: #faf9f6;
    border: 1px solid #f3f4f6;
    border-radius: var(--radius-sm);
    padding: 16px;
    font-size: 13px;
    color: #4b5563;
    margin-bottom: 24px;
}

/* Tip Selector Buttons */
.tip-selector-wrap {
    margin-bottom: 24px;
}

.tip-buttons-grid {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.tip-btn {
    flex: 1;
    padding: 10px 4px;
    border: 1px solid var(--color-border-dark);
    background: #ffffff;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
}

.tip-btn.active {
    background-color: var(--color-blue);
    color: #ffffff;
    border-color: var(--color-blue);
}

/* Footer Brand Logo Unclipped Exact Aspect Ratio */
.site-footer {
    background-color: #111111;
    color: #e5e7eb;
    padding: 60px 0 30px 0;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-brand-logo img {
    height: 48px;
    width: auto;
    aspect-ratio: 2630 / 364;
    object-fit: contain;
    border-radius: 0 !important;
    display: block;
}

.footer-text {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-heading {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #9ca3af;
    font-size: 14px;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact-item {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 10px;
}

.footer-contact-item a {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #9ca3af;
}

.payment-methods-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pay-badge {
    background-color: #1f2937;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    color: #d1d5db;
}

/* ==========================================================================
   RESPONSIVE & MOBILE DESIGN CUSTOMIZATIONS
   ========================================================================== */

@media (max-width: 992px) {
    .hero-grid, .pdp-grid, .cart-checkout-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid-row {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .contact-card-box {
        padding: 20px !important;
    }
}

@media (max-width: 768px) {
    /* Product Detail Page Mobile Padding Protection */
    .pdp-section {
        padding: 24px 16px !important;
    }
    .pdp-gallery-wrap {
        padding: 16px !important;
    }
    .pdp-details-wrap {
        padding: 0 4px !important;
    }
    .pdp-title {
        font-size: 24px;
    }
    .pdp-meta-table td {
        padding: 8px 10px;
        font-size: 13px;
    }

    /* Navigation & Menu */
    .nav-menu {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .btn-contact-desktop {
        display: none !important;
    }
    .mobile-contact-nav {
        display: block;
    }

    /* Mobile Logo Size Reduced by 20% (41px -> 33px) */
    .logo-img {
        height: 33px !important;
    }

    /* Hero CTAs on 2 separate full-width lines */
    .hero-title {
        font-size: 32px;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .hero-buttons .btn {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    /* Centered Mobile Trust Bar */
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .trust-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
    }
    .trust-icon {
        margin-bottom: 4px;
    }

    /* Product Grid: Full-Frame Images, Centered Titles, Subtitles & Prices */
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .product-card-thumb {
        padding: 6px !important;
    }
    .product-card-img {
        width: 100% !important;
        height: 100% !important;
        max-height: none !important;
        object-fit: contain !important;
    }
    .product-card-info {
        padding: 12px;
        text-align: center !important;
        align-items: center !important;
    }
    .product-card-title {
        font-size: 13px;
        line-height: 1.2;
        text-align: center !important;
    }
    .product-card-sub {
        font-size: 11px;
        margin-bottom: 8px;
        text-align: center !important;
    }
    .product-card-price {
        font-size: 15px;
        text-align: center !important;
    }
    .product-card-price-orig {
        font-size: 11px;
    }
    .product-card-bottom {
        flex-direction: column;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 8px;
        width: 100%;
    }
    .product-card-bottom .btn {
        width: 100%;
        padding: 8px 4px;
        font-size: 12px;
    }

    /* Form and Footer Layout */
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
