/*
Theme Name: OG8 Med
Theme URI: https://og8med.com
Author: OG8 Med
Author URI: https://og8med.com
Description: Premium medical apparel ecommerce theme for OG8 Med - Healthcare scrubs and uniforms
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: og8med
Tags: e-commerce, woocommerce, medical, scrub, healthcare

OG8 Med - Premium Scrub Suits for Healthcare Professionals
*/

/* ============================================
   CSS Variables - Brand Colors (Navy Blue & Light Beige)
   ============================================ */
:root {
    /* Primary Colors - Navy Blue */
    --og8-primary: #1e3a5f;        /* Deep Navy Blue */
    --og8-primary-light: #2d4a6f;   /* Medium Navy */
    --og8-primary-dark: #152d4a;     /* Dark Navy */
    
    /* Accent Colors - Light Beige */
    --og8-accent: #e8e0d4;         /* Light Beige */
    --og8-accent-light: #f5f0e8;   /* Very Light Beige */
    --og8-accent-dark: #c4b5a0;    /* Darker Beige */
    
    /* Secondary Colors */
    --og8-secondary: #2d3748;      /* Dark Slate */
    --og8-gray: #718096;           /* Medium Gray */
    --og8-light-gray: #f7f5f2;    /* Light Beige Background */
    
    /* Neutral Colors */
    --og8-white: #ffffff;
    --og8-dark: #1a202c;
    
    /* Status Colors */
    --og8-success: #48bb78;        /* Green */
    --og8-danger: #e53e3e;         /* Red */
    --og8-warning: #ecc94b;        /* Yellow */
    --og8-info: #4299e1;           /* Blue Info */
    
    /* Button Colors - Navy Blue */
    --og8-btn-bg: #1e3a5f;         /* Navy Blue */
    --og8-btn-hover: #2d4a6f;     /* Medium Navy */
    --og8-btn-accent: #d4c5b0;     /* Beige */
    
    /* Shadow Variables */
    --og8-shadow-xs: 0 1px 2px rgba(30, 58, 95, 0.05);
    --og8-shadow-sm: 0 2px 4px rgba(30, 58, 95, 0.08);
    --og8-shadow: 0 4px 12px rgba(30, 58, 95, 0.12);
    --og8-shadow-md: 0 8px 24px rgba(30, 58, 95, 0.15);
    --og8-shadow-lg: 0 12px 32px rgba(30, 58, 95, 0.18);
    --og8-shadow-xl: 0 20px 48px rgba(30, 58, 95, 0.2);
    
    --og8-font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --og8-font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --og8-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --og8-border-radius: 12px;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--og8-font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--og8-secondary);
    background-color: var(--og8-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--og8-primary);
    text-decoration: none;
    transition: var(--og8-transition);
}

a:hover {
    color: var(--og8-accent);
}

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

ul, ol {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--og8-font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--og8-primary);
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

/* ============================================
   Layout
   ============================================ */
.og8-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
}

.og8-section {
    padding: 5rem 0;
    position: relative;
}

.og8-section-dark {
    background-color: var(--og8-primary);
    color: var(--og8-white);
}

.og8-section-light {
    background-color: var(--og8-accent-light);
}

.og8-section-beige {
    background-color: var(--og8-accent);
}

.og8-section-cream {
    background-color: var(--og8-white);
}

/* ============================================
   Header & Navigation
   ============================================ */
.og8-header {
    background-color: var(--og8-white);
    box-shadow: var(--og8-shadow-md);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(30, 58, 95, 0.08);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease;
}

.og8-header.header-hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

.og8-header.scrolled {
    box-shadow: var(--og8-shadow-lg);
}

.og8-main {
    padding-top: 80px;
    max-width: 100%;
}

/* Full width for checkout and cart page - override ALL parent containers */
body.page-template-checkout-page,
body.page-template-page-checkout-page,
body.page-id-42,
body.page-id-41,
body.woocommerce-checkout,
body.woocommerce-cart,
body.page-template-cart-page,
 body.woocommerce-page.woocommerce-cart {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.page-template-cart-page .og8-wrapper,
body.page-template-cart-page #og8-wrapper,
body.woocommerce-cart .og8-wrapper,
body.woocommerce-cart #ig8-wrapper,
body.woocommerce-cart #og8-main,
body.page-template-cart-page #og8-main {
    max-width: 100% !important;
    width: 100% !important;
}

body.page-template-checkout-page #ig8-wrapper,
body.page-template-checkout-page #og8-main,
body.page-id-42 #og8-wrapper,
body.page-id-42 #og8-main,
body.page-template-page-checkout-page #og8-wrapper,
body.page-template-page-checkout-page #og8-main,
.woocommerce-checkout #og8-wrapper,
.woocommerce-checkout #og8-main,
.woocommerce-checkout .og8-wrapper,
.woocommerce-checkout .og8-main,
.woocommerce-checkout .og8-container,
body.page-template-checkout-page .og8-container {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}

body.page-template-checkout-page .og8-container {
    max-width: 100% !important;
    padding: 0 2rem !important;
}

.og8-header-top {
    background: linear-gradient(135deg, var(--og8-primary) 0%, var(--og8-primary-dark) 100%);
    color: var(--og8-white);
    padding: 0.625rem 0;
    font-size: 0.875rem;
    text-align: center;
    box-shadow: var(--og8-shadow-sm);
}

.og8-header-main {
    padding: 1.25rem 0;
}

.og8-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.og8-logo {
    font-family: var(--og8-font-heading);
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--og8-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
    text-shadow: var(--og8-shadow-xs);
}

.og8-logo:hover {
    color: var(--og8-primary-light);
}

.og8-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.og8-nav-menu {
    display: flex;
    gap: 2.5rem;
}

.og8-nav-item {
    position: relative;
}

.og8-nav-link {
    font-family: var(--og8-font-heading);
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--og8-secondary);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

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

.og8-nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--og8-white);
    box-shadow: var(--og8-shadow);
    min-width: 220px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--og8-transition);
}

.og8-nav-item:hover .og8-nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.og8-nav-dropdown a {
    display: block;
    padding: 0.625rem 1rem;
    color: var(--og8-secondary);
    font-size: 0.9375rem;
}

.og8-nav-dropdown a:hover {
    background: var(--og8-light-gray);
    color: var(--og8-accent);
}

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

.og8-icon-btn {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--og8-secondary);
    font-size: 1.25rem;
}

.og8-icon-btn:hover {
    color: var(--og8-accent);
}

.og8-cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--og8-accent);
    color: var(--og8-white);
    font-size: 0.625rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   Hero Section
   ============================================ */
.og8-hero {
    background-color: var(--og8-accent);
    color: var(--og8-primary);
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.og8-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(30, 58, 95, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(30, 58, 95, 0.08) 0%, transparent 40%);
    background-size: 100% 100%;
    pointer-events: none;
}

.og8-hero-content {
    position: relative;
    z-index: 1;
}

.og8-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--og8-primary);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    text-shadow: var(--og8-shadow-sm);
}

.og8-hero p {
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    color: var(--og8-secondary);
    line-height: 1.7;
}

.og8-hero-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.og8-hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--og8-secondary);
    background: var(--og8-white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    box-shadow: var(--og8-shadow-sm);
}

/* ============================================
   Buttons
   ============================================ */
.og8-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--og8-font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    box-shadow: var(--og8-shadow-sm);
}

.og8-btn-primary {
    background-color: var(--og8-primary);
    color: var(--og8-white);
}

.og8-btn-primary:hover {
    background-color: var(--og8-primary-light);
    color: var(--og8-white);
    transform: translateY(-3px);
    box-shadow: var(--og8-shadow-md);
}

.og8-btn-secondary {
    background-color: var(--og8-accent-dark);
    color: var(--og8-white);
}

.og8-btn-secondary:hover {
    background-color: var(--og8-accent);
    color: var(--og8-white);
}

.og8-btn-outline {
    background-color: transparent;
    border: 2px solid var(--og8-white);
    color: var(--og8-white);
}

.og8-btn-outline:hover {
    background-color: var(--og8-white);
    color: var(--og8-primary);
}

.og8-btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.og8-btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* ============================================
   Category Grid (Horizontal Scroll)
   ============================================ */
.og8-section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.og8-section-title h2 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.og8-section-title p {
    color: var(--og8-gray);
    font-size: 1.125rem;
}

.og8-category-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.og8-category-scroll::-webkit-scrollbar {
    height: 8px;
}

.og8-category-scroll::-webkit-scrollbar-track {
    background: var(--og8-light-gray);
    border-radius: 10px;
}

.og8-category-scroll::-webkit-scrollbar-thumb {
    background: var(--og8-primary);
    border-radius: 10px;
}

.og8-category-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--og8-primary-light);
}

.og8-category-card {
    position: relative;
    flex: 0 0 220px;
    background: var(--og8-white);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    padding: 2rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: var(--og8-shadow-sm);
    scroll-snap-align: start;
}

.og8-category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--og8-shadow-lg);
    border-color: var(--og8-primary);
}

.og8-category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--og8-primary) 0%, var(--og8-primary-light) 100%);
    color: var(--og8-white);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 2rem;
    transition: all 0.3s ease;
    box-shadow: var(--og8-shadow);
}

.og8-category-card:hover .og8-category-icon {
    transform: scale(1.15) translateY(-5px);
    box-shadow: var(--og8-shadow-md);
}

.og8-category-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--og8-primary);
    font-weight: 700;
}

.og8-category-card p {
    color: var(--og8-gray);
    font-size: 0.875rem;
    margin: 0;
}

.og8-category-card a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* ============================================
   Color Grid (Horizontal Scroll)
   ============================================ */
.og8-color-scroll {
    display: flex;
    justify-content: flex-start;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.og8-color-scroll::-webkit-scrollbar {
    height: 8px;
}

.og8-color-scroll::-webkit-scrollbar-track {
    background: rgba(30, 58, 95, 0.1);
    border-radius: 10px;
}

.og8-color-scroll::-webkit-scrollbar-thumb {
    background: var(--og8-primary);
    border-radius: 10px;
}

.og8-color-scroll::-webkit-scrollbar-thumb:hover {
    background: var(--og8-primary-light);
}

.og8-color-item {
    text-align: center;
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.og8-color-swatch {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 0.75rem;
    box-shadow: var(--og8-shadow-sm);
    transition: var(--og8-transition);
    border: 3px solid var(--og8-white);
}

.og8-color-swatch:hover {
    transform: scale(1.15);
    box-shadow: var(--og8-shadow-md);
    border-color: var(--og8-primary);
}

.og8-color-swatch.navy { background-color: var(--og8-primary); }
.og8-color-swatch.teal { background-color: var(--og8-accent); }
.og8-color-swatch.black { background-color: var(--og8-secondary); }
.og8-color-swatch.gray { background-color: var(--og8-gray); }
.og8-color-swatch.midnight { background-color: #1a365d; }

.og8-color-item span {
    display: block;
    font-size: 0.875rem;
    color: var(--og8-gray);
    font-weight: 500;
}

/* ============================================
   Product Grid
   ============================================ */
.og8-products-grid,
ul.products.og8-products-grid,
div.og8-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    row-gap: 3.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.og8-products-grid .og8-product-card,
ul.products.og8-products-grid li.product {
    margin: 0;
    padding: 0;
    float: none;
    width: 100% !important;
}

ul.products.og8-products-grid li.product.og8-product-card,
a.og8-product-card {
    display: flex !important;
    flex-direction: column !important;
    background: var(--og8-white) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.1) !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(30, 58, 95, 0.06) !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    float: none !important;
    position: relative !important;
    text-align: center !important;
    text-decoration: none !important;
    color: inherit !important;
}

ul.products.og8-products-grid li.product.og8-product-card:hover,
a.og8-product-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.15) !important;
}

a.og8-product-card {
    display: block;
}

.og8-product-image {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 1 !important;
    overflow: hidden !important;
    display: block;
}
    flex: 0 0 80% !important;
}

.og8-product-image img.og8-main-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: opacity 0.4s ease !important;
}

.og8-product-image img.og8-hover-img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
}

.og8-product-card:hover .og8-hover-img {
    opacity: 1 !important;
}

.og8-product-card:hover .og8-main-img {
    opacity: 0 !important;
}

.og8-product-info {
    flex: 0 0 20% !important;
    padding: 1rem !important;
    text-align: center !important;
}

.og8-product-title {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #1e3a5f !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.3 !important;
}

.og8-product-title a {
    color: inherit !important;
    text-decoration: none !important;
}

.og8-price-current {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #1e3a5f !important;
}

.og8-btn-buy-text {
    color: #1e3a5f !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    text-decoration: none !important;
    border-bottom: 1px solid #1e3a5f !important;
    padding-bottom: 1px !important;
    transition: all 0.3s ease !important;
}

.og8-btn-buy-text:hover {
    color: #c4b5a0 !important;
    border-bottom-color: #c4b5a0 !important;
}

.og8-btn-cart {
    background: #1e3a5f !important;
    color: #fff !important;
    padding: 0.5rem 1rem !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
}

.og8-btn-cart:hover {
    background: #2d4a6f !important;
    transform: scale(1.05) !important;
}

.og8-product-badge {
    position: absolute !important;
    top: 1rem !important;
    left: 1rem !important;
    padding: 0.3rem 0.8rem !important;
    border-radius: 4px !important;
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    z-index: 5 !important;
}

.og8-product-badge.sale {
    background: #c41e3a !important;
    color: #fff !important;
}

.og8-product-badge.bestseller {
    background: #1e3a5f !important;
    color: #fff !important;
}

.og8-product-category {
    font-size: 0.65rem !important;
    color: #718096 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-weight: 500 !important;
    display: block !important;
    margin-bottom: 0.25rem !important;
}

.og8-product-actions {
    display: flex !important;
    gap: 0.5rem !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Size Selection Modal (Global) */
#og8-global-size-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 999999;
    justify-content: center;
    align-items: center;
}

.og8-size-modal {
    animation: slideUp 0.3s ease;
}

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

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

.og8-close-modal:hover {
    background: #f7fafc !important;
    color: #1e3a5f !important;
}

.og8-size-btn {
    transition: all 0.3s ease;
}

.og8-size-btn:hover {
    border-color: #1e3a5f;
    background: #f7fafc;
}

.og8-size-btn.selected {
    background: #1e3a5f !important;
    border-color: #1e3a5f !important;
    color: #fff !important;
}

.og8-add-to-cart-btn:not(:disabled) {
    opacity: 1 !important;
    cursor: pointer !important;
}

.og8-add-to-cart-btn:not(:disabled):hover {
    background: #2d4a6f !important;
}

/* ============================================
   Single Product Page Layout
   ============================================ */
.og8-product-detail-section {
    padding-top: 2rem;
}

.og8-product-layout {
    display: grid;
    grid-template-columns: 100px 1fr 450px;
    gap: 2rem;
    margin-bottom: 4rem;
}

.og8-product-thumbs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.og8-product-thumbs::-webkit-scrollbar {
    width: 4px;
}

.og8-product-thumbs::-webkit-scrollbar-thumb {
    background: #1e3a5f;
    border-radius: 4px;
}

.og8-thumb-item {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.og8-thumb-item:hover {
    border-color: #1e3a5f;
}

.og8-thumb-item.active {
    border-color: #1e3a5f;
    box-shadow: 0 0 0 2px rgba(30, 58, 95, 0.2);
}

.og8-thumb-item img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.og8-product-main-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f5f0e8;
}

.og8-product-main-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
}

.og8-product-main-image .og8-product-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
}

.og8-product-details {
    padding: 0;
}

.og8-detail-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
}

.og8-detail-title-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.og8-detail-title-wrapper .og8-detail-title {
    margin-bottom: 0;
}

.og8-share-buttons {
    display: flex;
    gap: 0.5rem;
}

.og8-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: #718096;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.og8-share-btn:hover {
    color: #1e3a5f;
}

.og8-detail-sku {
    font-size: 0.875rem;
    color: #718096;
    margin-bottom: 0.75rem;
}

.og8-detail-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #718096;
    font-size: 0.875rem;
}

.og8-detail-rating .star-rating {
    color: #fbbf24;
}

.og8-detail-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
}

.og8-detail-description {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.og8-detail-section {
    margin-bottom: 1.5rem;
}

.og8-detail-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.og8-selected-color {
    font-weight: 400;
    color: #718096;
    text-transform: none;
}

.og8-size-chart-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #1e3a5f;
    text-decoration: underline;
}

.og8-size-chart-link:hover {
    color: #2d4a6f;
}

.og8-color-options {
    display: flex;
    gap: 0.75rem;
}

.og8-color-option {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.og8-color-option:hover {
    transform: scale(1.1);
}

.og8-color-option.active {
    border-color: #1e3a5f;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #1e3a5f;
}

.og8-size-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.og8-size-option {
    min-width: 48px;
    height: 48px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    color: #1e3a5f;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.75rem;
}

.og8-size-option:hover {
    border-color: #1e3a5f;
}

.og8-size-option.active {
    background: #1e3a5f;
    border-color: #1e3a5f;
    color: #fff;
}

.og8-quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.og8-qty-btn {
    width: 48px;
    height: 48px;
    border: none;
    background: #f7fafc;
    color: #1e3a5f;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.og8-qty-btn:hover {
    background: #1e3a5f;
    color: #fff;
}

#og8-qty-input {
    width: 60px;
    height: 48px;
    border: none;
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #1e3a5f;
    -moz-appearance: textfield;
}

#og8-qty-input::-webkit-outer-spin-button,
#og8-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.og8-embroidery-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.og8-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

.og8-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.og8-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 28px;
}

.og8-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .og8-slider {
    background-color: #1e3a5f;
}

input:checked + .og8-slider:before {
    transform: translateX(24px);
}

.og8-toggle-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e3a5f;
}

.og8-embroidery-options {
    background: #f7fafc;
    border-radius: 12px;
    padding: 1.25rem;
    margin-top: 0.5rem;
}

.og8-embroidery-row {
    margin-bottom: 0.75rem;
}

.og8-embroidery-row label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #4a5568;
}

.og8-embroidery-row input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #1e3a5f;
}

.og8-embroidery-price {
    margin-left: auto;
    font-weight: 600;
    color: #1e3a5f;
}

.og8-logo-upload {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.og8-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: #1e3a5f;
    border: 2px dashed #1e3a5f;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.og8-upload-btn:hover {
    background: #1e3a5f;
    color: #fff;
}

.og8-embroidery-note {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: #718096;
    font-style: italic;
}

.og8-text-embroidery-inputs {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.og8-input-label {
    display: block;
    font-size: 0.8rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.og8-embroidery-input {
    margin-bottom: 1rem;
}

.og8-embroidery-input:last-child {
    margin-bottom: 0;
}

.og8-embroidery-input input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #1e3a5f;
    background: #fff;
}

.og8-embroidery-input:first-child input {
    font-size: 1rem;
    font-weight: 500;
}

.og8-embroidery-input:last-child input {
    font-size: 0.85rem;
}

.og8-embroidery-input input:focus {
    outline: none;
    border-color: #1e3a5f;
}

.og8-detail-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.og8-btn-add-cart {
    flex: 1;
    background: #1e3a5f;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.og8-btn-add-cart:hover {
    background: #2d4a6f;
    transform: translateY(-2px);
}

.og8-btn-buy-now {
    flex: 1;
    background: transparent;
    color: #1e3a5f;
    border: 2px solid #1e3a5f;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.og8-btn-buy-now:hover {
    background: #1e3a5f;
    color: #fff;
}

/* Bulk Discounts */
.og8-bulk-discounts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.og8-bulk-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    flex-wrap: wrap;
}

.og8-bulk-option .og8-radio-custom,
.og8-bulk-option .og8-bulk-label,
.og8-bulk-option .og8-bulk-save {
    flex-shrink: 0;
}

.og8-bulk-prices {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-left: auto;
}

.og8-bulk-option:hover {
    border-color: #1e3a5f;
}

.og8-bulk-option.active {
    border-color: #1e3a5f;
    background: #f0f4f8;
}

.og8-bulk-option input {
    display: none;
}

.og8-radio-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.og8-bulk-option.active .og8-radio-custom {
    border-color: #1e3a5f;
    background: #1e3a5f;
}

.og8-bulk-option.active .og8-radio-custom::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}

.og8-bulk-label {
    font-weight: 600;
    color: #1e3a5f;
    min-width: 50px;
}

.og8-bulk-save {
    font-size: 0.75rem;
    color: #48bb78;
    font-weight: 600;
    background: #e6fffa;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.og8-bulk-prices {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.og8-bulk-mrp {
    text-decoration: line-through;
    color: #a0aec0;
    font-size: 0.85rem;
}

.og8-bulk-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1e3a5f;
}

/* Size Chart Modal */
.og8-size-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}

.og8-size-modal-content {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.og8-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: none;
    background: #f7fafc;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #718096;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.og8-modal-close:hover {
    background: #1e3a5f;
    color: #fff;
}

.og8-size-modal-body h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1e3a5f;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
    .og8-product-layout {
        grid-template-columns: 80px 1fr 400px;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .og8-product-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .og8-product-thumbs {
        flex-direction: row;
        max-height: none;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .og8-thumb-item {
        flex: 0 0 80px;
    }
    
    .og8-detail-title {
        font-size: 1.5rem;
    }
    
    .og8-detail-price {
        font-size: 1.5rem;
    }
    
    .og8-detail-actions {
        flex-direction: column;
    }
}

@media (max-width: 1200px) {
    .og8-products-grid,
    ul.products.og8-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        row-gap: 3rem;
    }
}

@media (max-width: 768px) {
    .og8-products-grid,
    ul.products.og8-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        row-gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .og8-products-grid,
    ul.products.og8-products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        row-gap: 2.5rem;
    }
}
    }
}

.og8-product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

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

.og8-product-card:hover .og8-product-image img {
    transform: scale(1.1);
}

.og8-product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--og8-primary);
    color: var(--og8-white);
    padding: 0.4rem 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--og8-shadow);
    z-index: 10;
}

.og8-product-badge.sale {
    background: var(--og8-danger);
}

.og8-product-badge.bestseller {
    background: var(--og8-primary);
}

.og8-product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(30, 58, 95, 0.95) 0%, rgba(30, 58, 95, 0.85) 50%, rgba(30, 58, 95, 0.7) 100%);
    padding: 1.25rem;
    color: var(--og8-white);
    transition: all 0.4s ease;
}

.og8-product-card:hover .og8-product-overlay {
    background: linear-gradient(to top, rgba(30, 58, 95, 1) 0%, rgba(30, 58, 95, 0.95) 50%, rgba(30, 58, 95, 0.8) 100%);
}

.og8-product-category {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.og8-product-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.og8-product-title a {
    color: var(--og8-white);
    text-decoration: none;
}

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

.og8-product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.og8-product-stars {
    color: #fbbf24;
    font-size: 0.75rem;
    display: flex;
    gap: 2px;
}

.og8-product-reviews {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
}

.og8-product-price {
    margin-bottom: 0.75rem;
}

.og8-price-current {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--og8-white);
}

.og8-price-current del {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 0.5rem;
}

.og8-price-current ins {
    text-decoration: none;
}

.og8-product-actions {
    display: flex;
    gap: 0.5rem;
}

.og8-btn-buy {
    flex: 1;
    background: var(--og8-white);
    color: var(--og8-primary);
    padding: 0.65rem 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.og8-btn-buy:hover {
    background: var(--og8-accent);
    color: var(--og8-white);
    transform: translateY(-2px);
}

/* ============================================
   Product Detail (Single Product)
   ============================================ */
.og8-product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 4rem 0;
}

.og8-product-gallery {
    position: sticky;
    top: 100px;
}

.og8-main-image {
    aspect-ratio: 1;
    background: var(--og8-light-gray);
    border-radius: var(--og8-border-radius);
    overflow: hidden;
    margin-bottom: 1rem;
}

.og8-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.og8-gallery-thumbs {
    display: flex;
    gap: 0.75rem;
}

.og8-gallery-thumb {
    width: 80px;
    height: 80px;
    background: var(--og8-light-gray);
    border-radius: var(--og8-border-radius);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--og8-transition);
}

.og8-gallery-thumb.active,
.og8-gallery-thumb:hover {
    opacity: 1;
}

.og8-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.og8-product-info h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.og8-product-sku {
    font-size: 0.875rem;
    color: var(--og8-gray);
    margin-bottom: 1rem;
}

.og8-product-rating-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.og8-product-price-large {
    margin-bottom: 1.5rem;
}

.og8-product-price-large .og8-price-current {
    font-size: 2rem;
}

.og8-product-description {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.og8-product-options {
    margin-bottom: 2rem;
}

.og8-option-label {
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.og8-color-options {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.og8-color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--og8-transition);
}

.og8-color-option:hover,
.og8-color-option.selected {
    border-color: var(--og8-primary);
}

.og8-size-options {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.og8-size-option {
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ddd;
    border-radius: var(--og8-border-radius);
    cursor: pointer;
    transition: var(--og8-transition);
    font-weight: 600;
}

.og8-size-option:hover,
.og8-size-option.selected {
    border-color: var(--og8-primary);
    background: var(--og8-primary);
    color: var(--og8-white);
}

.og8-quantity {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.og8-quantity-input {
    display: flex;
    align-items: center;
    border: 2px solid #ddd;
    border-radius: var(--og8-border-radius);
}

.og8-quantity-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
}

.og8-quantity-btn:hover {
    background: var(--og8-light-gray);
}

.og8-quantity input {
    width: 60px;
    height: 50px;
    text-align: center;
    border: none;
    font-size: 1rem;
    font-weight: 600;
}

.og8-add-to-cart {
    display: flex;
    gap: 1rem;
}

.og8-add-to-cart .og8-btn {
    flex: 1;
}

.og8-product-meta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.og8-product-meta p {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.og8-product-meta strong {
    color: var(--og8-primary);
}

/* ============================================
   Cart
   ============================================ */
.og8-cart {
    padding: 4rem 0;
}

.og8-cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.og8-cart-table th,
.og8-cart-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.og8-cart-table th {
    background: var(--og8-light-gray);
    font-weight: 600;
}

.og8-cart-product {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.og8-cart-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--og8-border-radius);
}

.og8-cart-product-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.og8-cart-product-info p {
    font-size: 0.875rem;
    color: var(--og8-gray);
    margin: 0;
}

.og8-cart-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.og8-cart-quantity button {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.og8-cart-remove {
    color: var(--og8-danger);
    font-size: 1.25rem;
}

.og8-cart-summary {
    background: var(--og8-light-gray);
    padding: 2rem;
    border-radius: var(--og8-border-radius);
}

.og8-cart-summary h3 {
    margin-bottom: 1.5rem;
}

.og8-cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #ddd;
}

.og8-cart-summary-row.total {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--og8-primary);
    border-bottom: none;
    padding-bottom: 0;
}

/* ============================================
   Checkout
   ============================================ */
.og8-checkout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    padding: 4rem 0;
}

.og8-checkout-form h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.og8-form-group {
    margin-bottom: 1.5rem;
}

.og8-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.og8-form-group input,
.og8-form-group select,
.og8-form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #ddd;
    border-radius: var(--og8-border-radius);
    transition: var(--og8-transition);
}

.og8-form-group input:focus,
.og8-form-group select:focus,
.og8-form-group textarea:focus {
    outline: none;
    border-color: var(--og8-primary);
}

.og8-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.og8-checkout-order {
    background: var(--og8-light-gray);
    padding: 2rem;
    border-radius: var(--og8-border-radius);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.og8-checkout-order h3 {
    margin-bottom: 1.5rem;
}

.og8-payment-methods {
    margin-top: 2rem;
}

.og8-payment-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: var(--og8-border-radius);
    margin-bottom: 1rem;
    cursor: pointer;
    transition: var(--og8-transition);
}

.og8-payment-method:hover,
.og8-payment-method.selected {
    border-color: var(--og8-primary);
    background: var(--og8-white);
}

/* ============================================
   Footer
   ============================================ */
.og8-footer {
    background: var(--og8-secondary);
    color: var(--og8-white);
    padding: 4rem 0 2rem;
}

.og8-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.og8-footer-brand h3 {
    font-size: 1.75rem;
    color: var(--og8-white);
    margin-bottom: 1rem;
}

.og8-footer-brand p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.og8-footer h4 {
    font-size: 1rem;
    color: var(--og8-white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.og8-footer-links a {
    display: block;
    color: rgba(255,255,255,0.7);
    padding: 0.375rem 0;
}

.og8-footer-links a:hover {
    color: var(--og8-accent);
}

.og8-footer-contact p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
}

.og8-footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.og8-footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--og8-white);
}

.og8-footer-social a:hover {
    background: var(--og8-accent);
}

.og8-footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
}

/* ============================================
   Newsletter
   ============================================ */
.og8-newsletter {
    background: linear-gradient(135deg, var(--og8-primary) 0%, var(--og8-primary-dark) 100%);
    color: var(--og8-white);
    padding: 5rem 0;
    box-shadow: var(--og8-shadow-lg);
}

.og8-newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.og8-newsletter h2 {
    color: var(--og8-white);
    margin-bottom: 0.5rem;
}

.og8-newsletter p {
    opacity: 0.9;
    margin: 0;
}

.og8-newsletter-form {
    display: flex;
    gap: 1rem;
    flex: 1;
    max-width: 500px;
}

.og8-newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: var(--og8-white);
    box-shadow: var(--og8-shadow);
}

.og8-newsletter-form button {
    background: var(--og8-accent-dark);
    color: var(--og8-white);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--og8-shadow);
    transition: all 0.3s ease;
}

.og8-newsletter-form button:hover {
    background: var(--og8-primary);
    transform: translateY(-2px);
    box-shadow: var(--og8-shadow-md);
}

.og8-newsletter-form button:hover {
    background: var(--og8-secondary);
}

/* ============================================
   Shop Page / Archive (Improved)
   ============================================ */
.og8-shop-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.og8-shop-header h1 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.og8-shop-header p {
    opacity: 0.9;
    margin: 0;
    font-size: 1.1rem;
}

.og8-shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    padding: 3rem 0;
}

.og8-shop-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.og8-filter-section {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.08);
}

.og8-filter-section h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #1e3a5f;
}

.og8-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.og8-filter-list li {
    margin-bottom: 0.25rem;
}

.og8-filter-list a {
    display: block;
    padding: 0.75rem 1rem;
    color: #4a5568;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.og8-filter-list a:hover,
.og8-filter-list a.active {
    background: #f0f4f8;
    color: #1e3a5f;
    font-weight: 600;
}

.og8-filter-colors {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.og8-filter-color {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.og8-filter-color:hover,
.og8-filter-color.active {
    border-color: #1e3a5f;
    transform: scale(1.15);
    box-shadow: 0 4px 8px rgba(30, 58, 95, 0.2);
}

.og8-shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.08);
}

.og8-shop-toolbar p {
    color: #718096;
    margin: 0;
    font-weight: 500;
}

.og8-shop-toolbar .woocommerce-ordering {
    display: flex;
    align-items: center;
}

.og8-shop-toolbar select {
    padding: 0.75rem 2rem 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    font-size: 0.9rem;
    color: #1e3a5f;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231e3a5f' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
}

.og8-shop-toolbar select:focus {
    outline: none;
    border-color: #1e3a5f;
}

/* ============================================
   Reviews
   ============================================ */
.og8-reviews {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid #eee;
}

.og8-reviews h2 {
    margin-bottom: 2rem;
}

.og8-review {
    background: var(--og8-light-gray);
    padding: 1.5rem;
    border-radius: var(--og8-border-radius);
    margin-bottom: 1.5rem;
}

.og8-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.og8-review-author {
    font-weight: 600;
}

.og8-review-rating {
    color: var(--og8-warning);
}

.og8-review-date {
    font-size: 0.875rem;
    color: var(--og8-gray);
}

.og8-review-form {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--og8-light-gray);
    border-radius: var(--og8-border-radius);
}

.og8-review-form h3 {
    margin-bottom: 1.5rem;
}

/* ============================================
   Tabs
   ============================================ */
.og8-tabs {
    margin: 3rem 0;
}

.og8-tabs-nav {
    display: flex;
    gap: 1rem;
    border-bottom: 2px solid #eee;
    margin-bottom: 2rem;
}

.og8-tabs-nav button {
    padding: 1rem 2rem;
    font-weight: 600;
    color: var(--og8-gray);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.og8-tabs-nav button.active,
.og8-tabs-nav button:hover {
    color: var(--og8-primary);
    border-bottom-color: var(--og8-primary);
}

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

.og8-tab-content.active {
    display: block;
}

/* ============================================
   Star Rating
   ============================================ */
.og8-star {
    color: #ddd;
}

.og8-star.filled {
    color: var(--og8-warning);
}

/* ============================================
   Badge
   ============================================ */
.og8-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
}

.og8-badge-new {
    background: var(--og8-accent);
    color: var(--og8-white);
}

.og8-badge-sale {
    background: var(--og8-danger);
    color: var(--og8-white);
}

.og8-badge-best {
    background: var(--og8-success);
    color: var(--og8-white);
}

/* ============================================
   Pagination
   ============================================ */
.og8-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.og8-pagination a,
.og8-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: var(--og8-secondary);
    font-weight: 600;
}

.og8-pagination a:hover,
.og8-pagination .current {
    background: var(--og8-primary);
    border-color: var(--og8-primary);
    color: var(--og8-white);
}

/* ============================================
   WooCommerce Overrides
   ============================================ */
.woocommerce-message {
    background: var(--og8-success);
    color: var(--og8-white);
    padding: 1rem;
    border-radius: var(--og8-border-radius);
    margin-bottom: 2rem;
}

.woocommerce-error {
    background: var(--og8-danger);
    color: var(--og8-white);
    padding: 1rem;
    border-radius: var(--og8-border-radius);
    margin-bottom: 2rem;
}

/* ============================================
   Loading & Animations
   ============================================ */
.og8-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem;
}

.og8-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--og8-light-gray);
    border-top-color: var(--og8-primary);
    border-radius: 50%;
    animation: og8-spin 1s linear infinite;
}

@keyframes og8-spin {
    to { transform: rotate(360deg); }
}

.og8-fade-in {
    animation: og8-fadeIn 0.5s ease-out;
}

@keyframes og8-fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   404 Page
   ============================================ */
.og8-404 {
    text-align: center;
    padding: 6rem 0;
}

.og8-404 h1 {
    font-size: 8rem;
    color: var(--og8-primary);
    margin-bottom: 1rem;
}

.og8-404 h2 {
    margin-bottom: 1rem;
}

.og8-404 p {
    color: var(--og8-gray);
    margin-bottom: 2rem;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .og8-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .og8-product-detail {
        grid-template-columns: 1fr;
    }
    
    .og8-checkout {
        grid-template-columns: 1fr;
    }
    
    .og8-shop-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .og8-hero h1 {
        font-size: 2.5rem;
    }
    
    .og8-nav-menu {
        display: none;
    }
    
    .og8-header-inner {
        flex-wrap: wrap;
    }
    
    .og8-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .og8-footer-social {
        justify-content: center;
    }
    
    .og8-newsletter-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .og8-newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }
    
    .og8-cart-table {
        font-size: 0.875rem;
    }
    
    .og8-cart-table th,
    .og8-cart-table td {
        padding: 0.5rem;
    }
    
    ul.products.og8-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
}

@media (max-width: 480px) {
    .og8-hero h1 {
        font-size: 2rem;
    }
    
    .og8-form-row {
        grid-template-columns: 1fr;
    }
    
    .og8-product-price-large .og8-price-current {
        font-size: 1.5rem;
    }
    
    ul.products.og8-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }
    
    .og8-product-info {
        padding: 0.75rem !important;
    }
    
    .og8-product-title {
        font-size: 0.8rem !important;
    }
    
    .og8-btn-cart {
        padding: 0.4rem 0.6rem !important;
        font-size: 0.7rem !important;
    }
    
    .og8-btn-buy-text {
        font-size: 0.7rem !important;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ============================================
   Product Features Section
   ============================================ */
.og8-product-features {
    padding: 1.5rem 0;
    background: #f8f9fa;
    overflow-x: hidden;
}

.og8-features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    text-align: center;
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.og8-features-grid::-webkit-scrollbar {
    display: none;
}

.og8-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.og8-feature-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.1);
}

.og8-feature-icon i {
    font-size: 1.25rem;
    color: #1e3a5f;
}

.og8-feature-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e3a5f;
}

@media (max-width: 768px) {
    .og8-features-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 0.5rem 1rem;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
    }
    
    .og8-feature-item {
        flex: 0 0 auto;
        width: 100px;
        scroll-snap-align: center;
    }
    
    .og8-feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .og8-feature-icon i {
        font-size: 1.25rem;
    }
}

/* ============================================
   Product Tabs Section
   ============================================ */
.og8-product-tabs-section {
    padding: 1.5rem 0;
}

.og8-tabs-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.og8-tabs-header {
    display: flex;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 2rem;
}

.og8-tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #718096;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.og8-tab-btn:hover {
    color: #1e3a5f;
}

.og8-tab-btn.active {
    color: #1e3a5f;
}

.og8-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: #1e3a5f;
}

.og8-tabs-content {
    min-height: 200px;
}

.og8-tab-panel {
    display: none;
}

.og8-tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.og8-tab-panel h3 {
    font-size: 1.25rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.og8-tab-panel ul {
    list-style: none;
    padding: 0;
}

.og8-tab-panel li {
    padding: 0.5rem 0;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

.og8-tab-panel li:last-child {
    border-bottom: none;
}

/* ============================================
   Testimonials Section (Doctor's Love Us)
   ============================================ */
.og8-testimonials-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.og8-testimonials-section .og8-section-title {
    text-align: center;
    font-size: 2rem;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
}

.og8-section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #718096;
    margin-bottom: 2rem;
}

.og8-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.og8-testimonial-card {
    text-align: center;
}

.og8-testimonial-card img {
    width: 100%;
    max-width: 250px;
    border-radius: 12px;
    aspect-ratio: 3/4;
    object-fit: cover;
    margin-bottom: 1rem;
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.15);
}

.og8-testimonial-name {
    font-size: 1rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 0.25rem;
}

.og8-testimonial-title {
    font-size: 0.875rem;
    color: #718096;
}

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

/* ============================================
   Similar Products Section
   ============================================ */
.og8-similar-section,
.og8-accessories-section {
    padding: 4rem 0;
}

.og8-section-title {
    font-size: 1.75rem;
    color: #1e3a5f;
    margin-bottom: 2rem;
    text-align: center;
}

.og8-products-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1rem 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.og8-products-scroll::-webkit-scrollbar {
    display: none;
}

.og8-product-card-mini {
    flex: 0 0 auto;
    width: 220px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.1);
    transition: all 0.3s ease;
    scroll-snap-align: start;
}

.og8-product-card-mini:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.15);
}

.og8-product-card-mini a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.og8-product-card-mini img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.og8-product-title-mini {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e3a5f;
    padding: 1rem 1rem 0.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.og8-product-price-mini {
    font-size: 1rem;
    font-weight: 700;
    color: #1e3a5f;
    padding: 0 1rem 1rem;
}

@media (max-width: 480px) {
    .og8-product-card-mini {
        width: 180px;
    }
}

@media (min-width: 1200px) {
    .og8-product-card-mini {
        width: 250px;
    }
}

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

/* ============================================
   Basket Page Styles
   ============================================ */
.og8-basket-section {
    padding: 3rem 0;
    min-height: 60vh;
}

.og8-basket-container {
    max-width: 600px;
    margin: 0 auto;
}

.og8-basket-items {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
    margin-bottom: 1.5rem;
}

.og8-basket-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}

.og8-basket-item:last-child {
    border-bottom: none;
}

.og8-basket-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
    flex-shrink: 0;
}

.og8-basket-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.og8-basket-details {
    flex: 1;
    min-width: 0;
}

.og8-basket-details h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e3a5f;
    margin: 0 0 0.25rem;
}

.og8-basket-meta {
    font-size: 0.8rem;
    color: #718096;
    margin: 0 0 0.5rem;
}

.og8-basket-price {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.og8-basket-price span {
    color: #718096;
}

.og8-basket-price strong {
    color: #1e3a5f;
    font-weight: 700;
}

.og8-basket-remove {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #e53e3e;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: all 0.2s;
}

.og8-basket-remove:hover {
    opacity: 1;
}

.og8-basket-summary {
    background: #fff;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
}

.og8-basket-total {
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e3a5f;
}

.og8-basket-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    background: linear-gradient(135deg, #1e3a5f, #2d4a6f);
    color: #fff;
    padding: 1rem;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: all 0.3s;
}

.og8-basket-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.2);
}

.og8-basket-view-cart {
    display: block;
    text-align: center;
    color: #718096;
    font-size: 0.9rem;
    text-decoration: none;
}

.og8-basket-view-cart:hover {
    color: #1e3a5f;
}

/* Empty Basket */
.og8-basket-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 20px;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
}

.og8-basket-empty i {
    font-size: 4rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
}

.og8-basket-empty h2 {
    color: #1e3a5f;
    margin-bottom: 0.5rem;
}

.og8-basket-empty p {
    color: #718096;
    margin-bottom: 1.5rem;
}

.og8-basket-btn {
    display: inline-block;
    background: #1e3a5f;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

/* ============================================
   Beautiful Cart Page Styles
   ============================================ */
.og8-beautiful-cart {
    padding: 3rem 0;
    min-height: 60vh;
}

.og8-cart-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: start;
}

.og8-cart-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.og8-table-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(30, 58, 95, 0.1);
}

.og8-cart-table {
    width: 100%;
    border-collapse: collapse;
}

.og8-cart-table thead {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
}

.og8-cart-table thead th {
    padding: 1.25rem 1rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.og8-cart-row {
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.og8-cart-row:hover {
    background: #f8fafc;
}

.og8-cart-row td {
    padding: 1.25rem 1rem;
    vertical-align: middle;
}

.og8-remove-cell {
    width: 50px;
    text-align: center;
}

.og8-remove-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e53e3e;
    border-radius: 10px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.og8-remove-btn:hover {
    background: #fed7d7;
}

.og8-product-cell {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.og8-product-img {
    width: 90px;
    height: 90px;
    border-radius: 14px;
    overflow: hidden;
    background: #f8f9fa;
}

.og8-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.og8-product-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1e3a5f;
    text-decoration: none;
    display: block;
    margin-bottom: 0.25rem;
}

.og8-product-title:hover {
    color: #2d4a6f;
}

.og8-product-meta {
    font-size: 0.85rem;
    color: #718096;
}

.og8-product-meta p {
    margin: 0;
}

.og8-price-cell,
.og8-total-cell {
    font-weight: 700;
    color: #1e3a5f;
    font-size: 1rem;
}

.og8-qty-cell .quantity {
    display: flex;
    align-items: center;
    gap: 0;
}

.og8-qty-cell input[type="number"] {
    width: 60px;
    padding: 0.6rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
}

.og8-qty-cell input[type="number"]:focus {
    outline: none;
    border-color: #1e3a5f;
}

.og8-cart-footer {
    padding: 1.5rem 2rem;
    background: #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.og8-checkout-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.og8-checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.25);
}

/* Cart Sidebar */
.og8-cart-sidebar {
    position: sticky;
    top: 100px;
}

.og8-sidebar-card {
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(30, 58, 95, 0.12);
}

.og8-sidebar-card h3 {
    font-size: 1.3rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #1e3a5f;
}

.og8-summary-rows {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.og8-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: #4a5568;
}

.og8-grand-total {
    display: flex;
    justify-content: space-between;
    padding: 1.25rem 0;
    border-top: 2px solid #e2e8f0;
    margin-bottom: 1.5rem;
}

.og8-grand-total span:first-child {
    font-weight: 700;
    color: #1e3a5f;
    font-size: 1.1rem;
}

.og8-grand-total span:last-child {
    font-weight: 800;
    color: #1e3a5f;
    font-size: 1.4rem;
}

.og8-trust-badges {
    border-top: 1px solid #e2e8f0;
    padding-top: 1.25rem;
}

.og8-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.85rem;
    color: #4a5568;
}

.og8-badge i {
    width: 22px;
    color: #1e3a5f;
}

/* Empty Cart */
.og8-empty-cart-wrapper {
    text-align: center;
    padding: 5rem 2rem;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(30, 58, 95, 0.1);
    max-width: 450px;
    margin: 2rem auto;
}

.og8-empty-icon {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.og8-empty-icon i {
    font-size: 3.5rem;
    color: #1e3a5f;
}

.og8-empty-cart-wrapper h2 {
    font-size: 1.8rem;
    color: #1e3a5f;
    margin-bottom: 0.75rem;
}

.og8-empty-cart-wrapper p {
    color: #718096;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.og8-shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #1e3a5f;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.og8-shop-btn:hover {
    background: #2d4a6f;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .og8-cart-wrapper {
        grid-template-columns: 1fr;
    }
    
    .og8-cart-sidebar {
        position: static;
    }
}
.og8-cart-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
    min-height: 60vh;
}

.og8-cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: start;
}

.og8-cart-items {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.08);
}

.og8-cart-table-wrapper {
    overflow-x: auto;
}

.og8-cart-section .shop_table {
    margin: 0;
    border: none;
}

.og8-cart-section .shop_table thead {
    background: #1e3a5f;
}

.og8-cart-section .shop_table thead th {
    padding: 1.25rem 1rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.og8-cart-section .shop_table tbody tr {
    border-bottom: 1px solid #e2e8f0;
}

.og8-cart-section .shop_table tbody tr:last-child {
    border-bottom: none;
}

.og8-cart-section .product-name {
    font-weight: 600;
    color: #1e3a5f;
}

.og8-cart-section .product-name a {
    color: #1e3a5f;
    text-decoration: none;
}

.og8-cart-section .product-name a:hover {
    color: #2d4a6f;
}

.og8-cart-section .product-name .variation {
    font-size: 0.85rem;
    color: #718096;
    margin-top: 0.5rem;
}

.og8-cart-section .product-price,
.og8-cart-section .product-subtotal {
    font-weight: 700;
    color: #1e3a5f;
}

.og8-cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    flex-wrap: wrap;
    gap: 1rem;
}

.og8-btn-update {
    background: #fff;
    color: #1e3a5f;
    border: 2px solid #1e3a5f;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.og8-btn-update:hover {
    background: #1e3a5f;
    color: #fff;
}

.og8-coupon-form {
    display: flex;
    gap: 0.5rem;
}

.og8-coupon-form input {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.9rem;
    width: 200px;
}

.og8-coupon-form input:focus {
    outline: none;
    border-color: #1e3a5f;
}

.og8-btn-coupon {
    background: #1e3a5f;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}

.og8-cart-summary {
    position: sticky;
    top: 100px;
}

.og8-summary-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
}

.og8-summary-card h3 {
    color: #1e3a5f;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #1e3a5f;
}

.og8-summary-card .shop_table {
    margin-bottom: 1.5rem;
}

.og8-summary-card .shop_table td {
    padding: 0.75rem 0;
    border: none;
}

.og8-summary-card .shop_table .cart-subtotal td,
.og8-summary-card .shop_table .fee td {
    color: #4a5568;
}

.og8-summary-card .shop_table .order-total td {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a5f;
    padding-top: 1rem;
    border-top: 2px solid #1e3a5f;
}

.og8-summary-card .shop_table .order-total th {
    display: none;
}

.og8-btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
    color: #fff;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.og8-btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.2);
}

.og8-summary-features {
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
}

.og8-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #4a5568;
    font-size: 0.9rem;
}

.og8-feature i {
    color: #1e3a5f;
    width: 24px;
}

/* Empty Cart */
.og8-empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.08);
    max-width: 500px;
    margin: 2rem auto;
}

.og8-empty-cart-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.og8-empty-cart-icon i {
    font-size: 3rem;
    color: #1e3a5f;
}

.og8-empty-cart h2 {
    color: #1e3a5f;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.og8-empty-cart p {
    color: #718096;
    margin-bottom: 2rem;
}

.og8-btn-shop {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #1e3a5f;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.og8-btn-shop:hover {
    background: #2d4a6f;
    transform: translateY(-2px);
}

.og8-cart-section .woocommerce-message {
    background: #e6fffa;
    border: 1px solid #48bb78;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.og8-cart-section .woocommerce-message::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #48bb78;
}

.og8-cart-section .woocommerce-error {
    background: #fed7d7;
    border: 1px solid #e53e3e;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
}

.og8-cart-section .shop_table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 2rem;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.08);
}

.og8-cart-section .shop_table thead {
    background: #1e3a5f;
}

.og8-cart-section .shop_table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.og8-cart-section .shop_table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: middle;
}

.og8-cart-section .shop_table tr:last-child td {
    border-bottom: none;
}

.og8-cart-section .shop_table tbody tr {
    transition: background 0.2s ease;
}

.og8-cart-section .shop_table tbody tr:hover {
    background: #f8fafc;
}

.og8-cart-section .product-remove {
    width: 50px;
    text-align: center;
}

.og8-cart-section .product-remove .remove {
    color: #e53e3e;
    font-size: 1.25rem;
    text-decoration: none;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.og8-cart-section .product-remove .remove:hover {
    background: #fed7d7;
}

.og8-cart-section .product-thumbnail {
    width: 100px;
}

.og8-cart-section .product-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
}

.og8-cart-section .product-name {
    font-weight: 600;
}

.og8-cart-section .product-name a {
    color: #1e3a5f;
    text-decoration: none;
    font-size: 1rem;
}

.og8-cart-section .product-name a:hover {
    color: #2d4a6f;
}

.og8-cart-section .product-name .variation {
    font-size: 0.85rem;
    color: #718096;
    margin-top: 0.25rem;
}

.og8-cart-section .product-price,
.og8-cart-section .product-subtotal {
    font-weight: 700;
    color: #1e3a5f;
    font-size: 1rem;
}

.og8-cart-section .quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.og8-cart-section .quantity .qty {
    width: 60px;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.og8-cart-section .quantity .qty:focus {
    outline: none;
    border-color: #1e3a5f;
}

.og8-cart-section .quantity .plus,
.og8-cart-section .quantity .minus {
    width: 36px;
    height: 36px;
    border: 2px solid #e2e8f0;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.og8-cart-section .quantity .plus:hover,
.og8-cart-section .quantity .minus:hover {
    border-color: #1e3a5f;
    background: #1e3a5f;
    color: #fff;
}

.og8-cart-actions-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.og8-coupon-section h3 {
    font-size: 1rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.og8-coupon-form {
    display: flex;
    gap: 0.5rem;
}

.og8-coupon-form input {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
}

.og8-coupon-form button,
.og8-cart-buttons button {
    padding: 0.75rem 1.5rem;
    background: #1e3a5f;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.og8-coupon-form button:hover,
.og8-cart-buttons button:hover {
    background: #2d4a6f;
}

.og8-cart-buttons {
    display: flex;
    gap: 1rem;
    margin-left: auto;
}

.og8-cart-buttons a.button-alt {
    background: #1e3a5f;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.og8-cart-collaterals {
    margin-top: 3rem;
}

.og8-collaterals-inner {
    max-width: 400px;
    margin-left: auto;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
}

.og8-collaterals-inner .shop_table {
    margin-bottom: 1rem;
}

.og8-collaterals-inner .shop_table_responsive .product-name {
    text-align: left;
}

.og8-collaterals-inner .shop_table_responsive td {
    padding: 0.75rem 0;
    border: none;
}

.og8-collaterals-inner .cart-subtotal td,
.og8-collaterals-inner .tax-total td,
.og8-collaterals-inner .order-total td {
    text-align: right;
    font-weight: 700;
    color: #1e3a5f;
    font-size: 1.1rem;
}

.og8-collaterals-inner .wc-proceed-to-checkout {
    margin-top: 1.5rem;
}

.og8-collaterals-inner .wc-proceed-to-checkout a {
    display: block;
    background: #1e3a5f;
    color: #fff;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
}

.og8-collaterals-inner .wc-proceed-to-checkout a:hover {
    background: #2d4a6f;
}

/* ============================================
   Checkout Page Styles (Beautiful)
   ============================================ */
.og8-checkout-section {
    padding: 3rem 0;
    min-height: 70vh;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

.og8-checkout-section-full {
    padding: 3rem 2rem !important;
    min-height: 80vh;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%) !important;
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
}

.og8-checkout-section-full .og8-container,
.og8-checkout-section-full > * {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 2rem !important;
    margin: 0 !important;
}

.woocommerce-checkout .og8-container,
.woocommerce-checkout .og8-wrapper,
.woocommerce-checkout #og8-main,
.woocommerce-checkout #og8-wrapper {
    max-width: 100% !important;
    width: 100% !important;
}

.og8-page-header-full {
    padding: 2rem 0;
    background: var(--og8-primary);
    text-align: center;
}

.og8-checkout-layout {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 2.5rem;
    align-items: start;
    width: 100%;
}

.og8-checkout-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.og8-checkout-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.08);
}

.og8-checkout-card > h3 {
    font-size: 1.25rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #1e3a5f;
    font-weight: 700;
}

.og8-order-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(30, 58, 95, 0.12);
    position: sticky;
    top: 100px;
}

.og8-order-card > h3 {
    font-size: 1.25rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.og8-order-items {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.og8-order-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}

.og8-order-img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f8f9fa;
}

.og8-order-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.og8-order-details {
    flex: 1;
    min-width: 0;
}

.og8-order-name {
    display: block;
    font-weight: 600;
    color: #1e3a5f;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.og8-order-meta {
    font-size: 0.8rem;
    color: #718096;
}

.og8-order-price {
    font-weight: 700;
    color: #1e3a5f;
    white-space: nowrap;
}

.og8-order-totals {
    margin-bottom: 1.5rem;
}

.og8-order-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #4a5568;
}

.og8-order-row span:last-child {
    font-weight: 600;
    color: #1e3a5f;
}

.og8-order-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    margin-top: 0.5rem;
    border-top: 2px solid #1e3a5f;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e3a5f;
}

.og8-payment-methods {
    margin-bottom: 1.5rem;
}

.og8-payment-methods #payment {
    background: transparent;
    border-radius: 0;
    padding: 0;
}

.og8-payment-methods #payment .wc_payment_methods {
    border: none;
    padding: 0;
    margin-bottom: 0;
}

.og8-payment-methods #payment .wc_payment_method {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    transition: all 0.2s ease;
    background: #f8f9fa;
}

.og8-payment-methods #payment .wc_payment_method:hover,
.og8-payment-methods #payment .wc_payment_method.active {
    border-color: #1e3a5f;
    background: #fff;
}

.og8-payment-methods #payment .wc_payment_method input {
    margin-right: 0.75rem;
}

.og8-payment-methods #payment .wc_payment_method label {
    font-weight: 600;
    color: #1e3a5f;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.og8-payment-methods #payment .payment_box {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 0.75rem;
    margin-left: 0;
    border: 1px solid #e2e8f0;
}

.og8-payment-methods #payment .payment_box p {
    margin: 0;
    color: #4a5568;
    font-size: 0.9rem;
}

.og8-place-order-btn {
    width: 100%;
    background: linear-gradient(135deg, #1e3a5f, #2d4a6f);
    color: #fff;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.og8-place-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.25);
}

.og8-trust-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #718096;
}

.og8-trust-icons i {
    margin-right: 0.4rem;
}

.og8-checkout-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 20px;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
}

.og8-checkout-empty i {
    font-size: 4rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
}

.og8-checkout-empty h2 {
    color: #1e3a5f;
    margin-bottom: 0.5rem;
}

.og8-checkout-empty p {
    color: #718096;
    margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
    .og8-checkout-layout {
        grid-template-columns: 1fr;
    }
    .og8-order-card {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .og8-checkout-section {
        padding: 2rem 0;
    }
    .og8-checkout-card,
    .og8-order-card {
        padding: 1.5rem;
    }
}

.og8-checkout-card .form-row {
    margin-bottom: 1.25rem;
}

.og8-checkout-card .form-row label {
    display: block;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.og8-checkout-card .form-row label .required {
    color: #e53e3e;
}

.og8-checkout-card .form-row-first,
.og8-checkout-card .form-row-last,
.og8-checkout-card .form-row-wide {
    margin-bottom: 1.25rem;
}

.og8-checkout-card input.input-text,
.og8-checkout-card textarea,
.og8-checkout-card select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
    color: #1e3a5f;
}

.og8-checkout-card input.input-text:focus,
.og8-checkout-card textarea:focus,
.og8-checkout-card select:focus {
    outline: none;
    border-color: #1e3a5f;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

#billing_first_name_field,
#billing_last_name_field {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100% !important;
}

/* Name fields container - ensure side by side */
#billing_first_field,
#billing_last_field,
#billing_first_name_field,
#billing_last_name_field,
#shipping_first_field,
#shipping_last_field {
    display: flex !important;
    flex-direction: row !important;
    gap: 1rem !important;
}

#billing_first_field .form-row,
#billing_last_field .form-row,
#billing_first_name_field .form-row,
#billing_last_name_field .form-row,
#shipping_first_field .form-row,
#shipping_last_field .form-row {
    flex: 1;
    width: 48%;
}

.og8-checkout-card .woocommerce-form-row {
    margin-bottom: 1.25rem;
}

#billing_company_field,
#billing_email_field,
#billing_phone_field,
#billing_address_1_field,
#billing_address_2_field,
#billing_city_field,
#billing_postcode_field,
#billing_state_field {
    width: 100%;
}

.og8-checkout-payments {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
}

.og8-checkout-payments h3 {
    font-size: 1.1rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.og8-checkout-right {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    position: sticky;
    top: 100px;
    height: fit-content;
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.12);
}

.og8-checkout-right #order_review_heading {
    font-size: 1.25rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.og8-checkout-right .shop_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.og8-checkout-right .shop_table th {
    text-align: left;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
    font-weight: 500;
}

.og8-checkout-right .shop_table td {
    text-align: right;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    font-weight: 600;
    color: #1e3a5f;
}

.og8-checkout-right .shop_table .cart-subtotal td,
.og8-checkout-right .shop_table .shipping td {
    color: #4a5568;
    font-weight: 500;
}

.og8-checkout-right .shop_table .order-total {
    border-top: 2px solid #1e3a5f;
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.og8-checkout-right .shop_table .order-total th,
.og8-checkout-right .shop_table .order-total td {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a5f;
    border: none;
    padding-bottom: 0;
}

.og8-checkout-right #payment {
    background: transparent;
    border-radius: 0;
    padding: 0;
    margin-top: 1.5rem;
}

.og8-checkout-right #payment .wc_payment_methods {
    border: none;
    padding: 0;
    margin-bottom: 1rem;
}

.og8-checkout-right #payment .wc_payment_method {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 0.75rem;
    transition: all 0.2s ease;
}

.og8-checkout-right #payment .wc_payment_method:hover,
.og8-checkout-right #payment .wc_payment_method.active {
    border-color: #1e3a5f;
    background: #f8fafc;
}

.og8-checkout-right #payment .wc_payment_method input {
    margin-right: 0.75rem;
}

.og8-checkout-right #payment .wc_payment_method label {
    font-weight: 600;
    color: #1e3a5f;
    cursor: pointer;
}

.og8-checkout-right #payment .payment_box {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 0.75rem;
    margin-left: 1.75rem;
}

.og8-checkout-right #payment .payment_box p {
    margin: 0;
    color: #4a5568;
    font-size: 0.9rem;
}

.og8-checkout-right .place-order {
    margin-top: 1.5rem;
}

.og8-checkout-right #place_order {
    width: 100%;
    background: #1e3a5f;
    color: #fff;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.og8-checkout-right #place_order:hover {
    background: #2d4a6f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
}

.og8-checkout-terms {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #718096;
}

.og8-checkout-terms a {
    color: #1e3a5f;
    text-decoration: underline;
}
    color: #1e3a5f;
    font-weight: 600;
}

.og8-checkout-right .shop_table .order-total th,
.og8-checkout-right .shop_table .order-total td {
    border-top: 2px solid #1e3a5f;
    border-bottom: none;
    padding-top: 1rem;
    font-size: 1.25rem;
    color: #1e3a5f;
}

.og8-checkout-right #payment {
    margin-top: 1.5rem;
    background: #fff;
    border-radius: 8px;
    padding: 1rem;
}

.og8-checkout-right #payment .form-row {
    padding: 0;
}

#payment .wc_payment_method label {
    font-weight: 600;
    color: #1e3a5f;
    display: block;
    margin-bottom: 0.5rem;
}

#payment .payment_box {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

#payment .payment_box p {
    margin: 0;
    color: #4a5568;
}

.og8-checkout-right .place-order {
    margin-top: 1.5rem;
}

.og8-checkout-right button#place_order {
    width: 100%;
    background: #1e3a5f;
    color: #fff;
    padding: 1.25rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.og8-checkout-right button#place_order:hover {
    background: #2d4a6f;
}

/* ============================================
   Responsive Cart & Checkout
   ============================================ */
@media (max-width: 1024px) {
    .og8-checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .og8-checkout-right {
        order: -1;
        position: static;
    }
    
    .og8-cart-layout {
        grid-template-columns: 1fr;
    }
    
    .og8-cart-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .og8-cart-section .shop_table thead {
        display: none;
    }
    
    .og8-cart-section .shop_table tbody tr {
        display: flex;
        flex-direction: column;
        padding: 1rem 0;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .og8-cart-section .shop_table td {
        display: flex;
        justify-content: space-between;
        padding: 0.5rem 0;
    }
    
    .og8-cart-section .shop_table td::before {
        content: attr(data-title);
        font-weight: 600;
        color: #718096;
    }
    
    .og8-cart-section .product-thumbnail {
        display: none;
    }
    
    .og8-cart-actions-row {
        flex-direction: column;
    }
    
    .og8-coupon-form {
        flex-direction: column;
        width: 100%;
    }
    
    .og8-coupon-form input,
    .og8-coupon-form button {
        width: 100%;
    }
    
    .og8-cart-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .og8-cart-buttons button,
    .og8-cart-buttons a.button-alt {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .og8-collaterals-inner {
        max-width: 100%;
    }
}

/* ============================================
   Page Header (shared)
   ============================================ */
.og8-page-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
    padding: 4rem 0;
    text-align: center;
}

.og8-page-header h1 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.og8-page-header .breadcrumb {
    color: rgba(255, 255, 255, 0.8);
}

.og8-page-header .breadcrumb a {
    color: #fff;
}

/* ============================================
   Content Page Styles (Privacy, Terms, etc.)
   ============================================ */
.og8-content-section {
    padding: 4rem 0;
}

.og8-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.og8-content-updated {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    text-align: center;
}

.og8-content-block {
    margin-bottom: 2.5rem;
}

.og8-content-block h2 {
    font-size: 1.25rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.og8-content-block p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.og8-content-block ul {
    list-style: none;
    padding: 0;
}

.og8-content-block li {
    color: #4a5568;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    line-height: 1.6;
}

.og8-content-block li:last-child {
    border-bottom: none;
}

/* ============================================
   About Page Styles
   ============================================ */
.og8-about-hero {
    padding: 5rem 0;
}

.og8-about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.og8-about-hero-text h2 {
    font-size: 2.25rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
}

.og8-about-hero-text p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.og8-about-hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(30, 58, 95, 0.2);
}

.og8-mission-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.og8-mission-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.1);
    transition: all 0.3s ease;
}

.og8-mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(30, 58, 95, 0.15);
}

.og8-mission-icon {
    width: 70px;
    height: 70px;
    background: #1e3a5f;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.og8-mission-icon i {
    font-size: 1.75rem;
    color: #fff;
}

.og8-mission-card h3 {
    font-size: 1.25rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.og8-mission-card p {
    color: #4a5568;
    line-height: 1.7;
}

.og8-whyus-section {
    padding: 5rem 0;
}

.og8-section-title-center {
    text-align: center;
    font-size: 2rem;
    color: #1e3a5f;
    margin-bottom: 3rem;
}

.og8-whyus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.og8-whyus-item {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.og8-whyus-item:hover {
    border-color: #1e3a5f;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.1);
}

.og8-whyus-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a5f;
    opacity: 0.3;
    display: block;
    margin-bottom: 0.5rem;
}

.og8-whyus-item h4 {
    font-size: 1.1rem;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
}

.og8-whyus-item p {
    font-size: 0.9rem;
    color: #718096;
}

.og8-stats-section {
    padding: 4rem 0;
    background: #1e3a5f;
}

.og8-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.og8-stat-item {
    color: #fff;
}

.og8-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.og8-stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

.og8-team-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.og8-team-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.og8-team-card {
    text-align: center;
    max-width: 350px;
}

.og8-team-card img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.15);
}

.og8-team-card h3 {
    font-size: 1.5rem;
    color: #1e3a5f;
    margin-bottom: 0.25rem;
}

.og8-team-title {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 1rem;
}

.og8-team-desc {
    color: #4a5568;
    line-height: 1.7;
}

.og8-cta-section {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
}

.og8-cta-section h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.og8-cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.og8-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    color: #1e3a5f;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.og8-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* ============================================
   Contact Page Styles
   ============================================ */
.og8-contact-hero {
    padding: 4rem 0;
    background: #f8f9fa;
    text-align: center;
}

.og8-contact-hero-text h2 {
    font-size: 2.25rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.og8-contact-hero-text p {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.og8-contact-info {
    padding: 4rem 0;
    margin-top: -3rem;
}

.og8-contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.og8-contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.1);
}

.og8-contact-icon {
    width: 60px;
    height: 60px;
    background: #1e3a5f;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.og8-contact-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.og8-contact-card h3 {
    font-size: 1.1rem;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
}

.og8-contact-card p {
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 0.25rem;
}

.og8-contact-note {
    font-size: 0.8rem;
    color: #718096;
}

.og8-contact-form-section {
    padding: 4rem 0;
}

.og8-contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.og8-contact-form-content h2 {
    font-size: 1.75rem;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
}

.og8-contact-form-content > p {
    color: #4a5568;
    margin-bottom: 2rem;
}

.og8-form-success {
    background: #e6fffa;
    border: 1px solid #48bb78;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.og8-form-success i {
    font-size: 1.5rem;
    color: #48bb78;
}

.og8-contact-form .og8-form-row {
    margin-bottom: 1.5rem;
}

.og8-contact-form label {
    display: block;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
}

.og8-contact-form input,
.og8-contact-form select,
.og8-contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.og8-contact-form input:focus,
.og8-contact-form select:focus,
.og8-contact-form textarea:focus {
    outline: none;
    border-color: #1e3a5f;
}

.og8-submit-btn {
    background: #1e3a5f;
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.og8-submit-btn:hover {
    background: #2d4a6f;
    transform: translateY(-2px);
}

.og8-contact-faq h3 {
    font-size: 1.5rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
}

.og8-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.og8-faq-item h4 {
    padding: 1rem;
    font-size: 1rem;
    color: #1e3a5f;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    margin: 0;
}

.og8-faq-item h4 i {
    color: #1e3a5f;
}

.og8-faq-item p {
    padding: 0 1rem 1rem;
    color: #4a5568;
    margin: 0;
    display: none;
}

.og8-faq-item.active p {
    display: block;
}

.og8-map-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.og8-map-content {
    text-align: center;
}

.og8-map-content h2 {
    font-size: 1.75rem;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
}

.og8-map-content p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.og8-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #1e3a5f;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.og8-directions-btn:hover {
    background: #2d4a6f;
}

/* ============================================
   Responsive About & Contact Pages
   ============================================ */
@media (max-width: 1024px) {
    .og8-about-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .og8-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .og8-whyus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .og8-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .og8-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .og8-contact-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .og8-about-hero-text h2,
    .og8-contact-hero-text h2 {
        font-size: 1.75rem;
    }
    
    .og8-whyus-grid {
        grid-template-columns: 1fr;
    }
    
    .og8-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .og8-contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Mobile Navigation
   ============================================ */
.og8-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 99999;
    overflow-y: auto;
    padding: 5rem 1.5rem 2rem;
}

.og8-mobile-menu.active {
    display: block;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

.og8-mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.og8-mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1e3a5f;
}

.og8-mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.og8-mobile-nav-menu li {
    border-bottom: 1px solid #e2e8f0;
}

.og8-mobile-nav-menu a {
    display: block;
    padding: 1rem 0;
    color: #1e3a5f;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
}

.og8-mobile-nav-menu .submenu {
    list-style: none;
    padding-left: 1rem;
    display: none;
}

.og8-mobile-nav-menu li.has-submenu > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    float: right;
}

.og8-mobile-nav-menu li.has-submenu.active > a::after {
    content: '\f106';
}

.og8-mobile-nav-menu li.has-submenu.active .submenu {
    display: block;
}

.og8-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99998;
}

.og8-mobile-overlay.active {
    display: block;
}

/* ============================================
   Mobile Single Product Page
   ============================================ */
@media (max-width: 768px) {
    .og8-product-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .og8-product-thumbs {
        display: flex;
        overflow-x: auto;
        gap: 0.5rem;
        order: 2;
    }
    
    .og8-product-thumbs .og8-thumb-item {
        flex: 0 0 60px;
    }
    
    .og8-product-main-image {
        order: 1;
    }
    
    .og8-product-details {
        order: 3;
    }
    
    .og8-detail-actions {
        flex-direction: column;
    }
    
    .og8-detail-actions button {
        width: 100%;
    }
    
    .og8-bulk-discounts {
        gap: 0.5rem;
    }
    
    .og8-bulk-option {
        padding: 0.75rem;
    }
    
    .og8-bulk-prices {
        margin-left: auto !important;
    }
    
    .og8-feature-item,
    .og8-testimonial-card {
        min-width: 140px;
    }
}

/* ============================================
   Mobile Homepage
   ============================================ */
@media (max-width: 768px) {
    .og8-hero h1 {
        font-size: 1.75rem;
    }
    
    .og8-hero p {
        font-size: 1rem;
    }
    
    .og8-hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .og8-section-header h2 {
        font-size: 1.5rem;
    }
    
    .og8-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* ============================================
   Mobile Footer
   ============================================ */
@media (max-width: 768px) {
    .og8-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .og8-footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .og8-footer-payments {
        justify-content: center;
    }
}

/* ============================================
   Extra Small Devices
   ============================================ */
@media (max-width: 400px) {
    .og8-container {
        padding: 0 1rem;
    }
    
    .og8-page-header h1,
    .og8-shop-header h1 {
        font-size: 1.5rem;
    }
    
    .og8-product-layout {
        gap: 1rem;
    }
    
    .og8-btn-add-cart,
    .og8-btn-buy-now {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   Reviews Section
   ============================================ */
.og8-reviews-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.og8-reviews-section .og8-section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.og8-reviews-summary {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.1);
}

.og8-reviews-average {
    text-align: center;
    padding: 1rem;
}

.og8-average-rating {
    font-size: 3rem;
    font-weight: 700;
    color: #1e3a5f;
    display: block;
}

.og8-reviews-average .og8-stars {
    color: #fbbf24;
    margin: 0.5rem 0;
}

.og8-reviews-average .og8-stars i {
    font-size: 1rem;
}

.og8-reviews-count {
    color: #718096;
    font-size: 0.9rem;
}

.og8-reviews-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.og8-breakdown-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.og8-breakdown-star {
    width: 50px;
    color: #4a5568;
    font-size: 0.85rem;
}

.og8-breakdown-bar {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.og8-breakdown-fill {
    height: 100%;
    background: #fbbf24;
    border-radius: 4px;
}

.og8-breakdown-percent {
    width: 40px;
    text-align: right;
    color: #718096;
    font-size: 0.85rem;
}

.og8-reviews-list {
    max-width: 800px;
    margin: 0 auto;
}

.og8-review-item {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(30, 58, 95, 0.08);
}

.og8-review-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.og8-review-avatar img {
    border-radius: 50%;
}

.og8-review-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.og8-review-author {
    font-size: 1rem;
    font-weight: 600;
    color: #1e3a5f;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.og8-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.7rem;
    font-weight: 500;
    color: #48bb78;
    background: #e6fffa;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.og8-verified-badge i {
    font-size: 0.65rem;
}

.og8-review-stars {
    color: #fbbf24;
    font-size: 0.75rem;
}

.og8-review-stars i:not(.active) {
    color: #e2e8f0;
}

.og8-review-date {
    font-size: 0.8rem;
    color: #718096;
}

.og8-review-text {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.og8-no-reviews {
    text-align: center;
    padding: 3rem;
    background: #fff;
    border-radius: 12px;
}

.og8-no-reviews p {
    color: #718096;
    margin-bottom: 1.5rem;
}

.og8-write-review-btn {
    display: inline-block;
    background: #1e3a5f;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.og8-write-review-btn:hover {
    background: #2d4a6f;
}

@media (max-width: 768px) {
    .og8-reviews-summary {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
