/* assets/css/style.css */
/* Pookky - Premium Lingerie & Innerwear Brand Design System */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;0,6..96,700;1,6..96,400;1,6..96,500&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
    --brand-blush: #FFF0F2;
    --brand-rose-gold: #B76E79;
    --brand-mauve: #5D3A42;
    --brand-cream: #FAF9F6;
    --brand-charcoal: #2E2E2E;
    --brand-white: #FFFFFF;
    --brand-gray-light: #F1F0EC;
    --brand-accent: #EAD5C3; /* Warm Nude */
    
    /* ==========================================================
       POOKKY TYPOGRAPHY SYSTEM
       Primary Display: Bodoni Moda (Hero, titles, section headings)
       Primary UI & Body: Montserrat (Navigation, body, products, forms)
       ========================================================== */
    --font-display: "Bodoni Moda", Didot, "Bodoni MT", Georgia, serif;
    --font-ui: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Aliases for backwards compatibility */
    --font-heading: var(--font-display);
    --font-body: var(--font-ui);

    /* Recommended Weights */
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;

    /* Line Height Tokens */
    --lh-hero: 1.15;
    --lh-heading: 1.25;
    --lh-snug: 1.35;
    --lh-body: 1.65;
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --box-shadow-soft: 0 8px 30px rgba(93, 58, 66, 0.05);
    --box-shadow-medium: 0 12px 40px rgba(93, 58, 66, 0.08);
}

/* Base Body Typography: Montserrat 400 */
body {
    background-color: var(--brand-cream);
    color: var(--brand-charcoal);
    font-family: var(--font-ui);
    font-weight: var(--fw-regular);
    font-size: 15px;
    line-height: var(--lh-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Display & Section Headings: Bodoni Moda 500 / 600 */
h1, h2, h3, .font-display {
    font-family: var(--font-display);
    color: var(--brand-mauve);
    font-weight: var(--fw-medium);
    letter-spacing: -0.01em;
}

/* UI Sub-headings: Montserrat 600 */
h4, h5, h6 {
    font-family: var(--font-ui);
    color: var(--brand-mauve);
    font-weight: var(--fw-semibold);
}

/* Paragraphs & Text */
p {
    font-family: var(--font-ui);
    font-weight: var(--fw-regular);
    line-height: var(--lh-body);
}

a {
    color: var(--brand-rose-gold);
    text-decoration: none;
    transition: var(--transition-smooth);
}
a:hover {
    color: var(--brand-mauve);
}

/* ==========================================================
   REUSABLE TYPOGRAPHY DESIGN TOKENS & CLASSES
   ========================================================== */
.font-display {
    font-family: var(--font-display) !important;
}
.font-ui {
    font-family: var(--font-ui) !important;
}

/* 1. Hero Headings: Bodoni Moda 500 or 600 with tighter editorial line-height */
.display-hero,
.hero-heading {
    font-family: var(--font-display) !important;
    font-weight: var(--fw-semibold);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: var(--lh-hero);
    letter-spacing: -0.015em;
    color: var(--brand-mauve);
    margin-bottom: 1.25rem;
}

/* 2. Main Page Titles (H1): Bodoni Moda 500 */
h1.page-title,
.page-title,
.h1-display {
    font-family: var(--font-display) !important;
    font-weight: var(--fw-medium);
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    line-height: var(--lh-heading);
    letter-spacing: -0.01em;
    color: var(--brand-mauve);
    margin-bottom: 1.25rem;
}

/* 3. Section Headings (H2): Bodoni Moda 500 */
h2.section-title,
.section-title,
.h2-display {
    font-family: var(--font-display) !important;
    font-weight: var(--fw-medium);
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    line-height: var(--lh-heading);
    letter-spacing: -0.01em;
    color: var(--brand-mauve);
    margin-bottom: 1rem;
}

/* 4. Collection & Category Headings (H3): Bodoni Moda 500 */
h3.collection-title,
.collection-title,
.category-title,
.category-card-title,
.h3-display {
    font-family: var(--font-display) !important;
    font-weight: var(--fw-medium);
    font-size: clamp(1.2rem, 2.2vw, 1.7rem);
    line-height: var(--lh-snug);
    color: var(--brand-mauve);
}

/* 5. Sub-headings (H4): Bodoni Moda 500 */
.h4-display {
    font-family: var(--font-display) !important;
    font-weight: var(--fw-medium);
    font-size: 1.25rem;
    line-height: 1.35;
    color: var(--brand-mauve);
}

/* 6. Short Brand Statements & Editorial Quotes: Bodoni Moda */
.brand-statement {
    font-family: var(--font-display) !important;
    font-weight: var(--fw-medium);
    font-style: italic;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    line-height: 1.45;
    color: var(--brand-mauve);
}

/* 7. Body Large: Montserrat 400 */
.body-large,
.lead {
    font-family: var(--font-ui) !important;
    font-weight: var(--fw-regular);
    font-size: 1.125rem;
    line-height: var(--lh-body);
    color: #4a4a4a;
}

/* 8. Body Text: Montserrat 400 */
.body-text {
    font-family: var(--font-ui) !important;
    font-weight: var(--fw-regular);
    font-size: 0.95rem;
    line-height: var(--lh-body);
}

/* 9. Small Text: Montserrat 400 */
.small-text,
small,
.small {
    font-family: var(--font-ui) !important;
    font-weight: var(--fw-regular);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* 10. Navigation: Montserrat 500 */
.nav-text,
.navbar-nav .nav-link,
.navbar .nav-link {
    font-family: var(--font-ui) !important;
    font-weight: var(--fw-medium);
    font-size: 0.925rem;
    letter-spacing: 0.02em;
}

/* 11. Buttons: Montserrat 600 with clean spacing */
.btn-text,
.btn,
.btn-brand,
.btn-brand-outline {
    font-family: var(--font-ui) !important;
    font-weight: var(--fw-semibold);
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

/* 12. Product Titles: Montserrat 500 or 600 */
.product-title,
.product-card .product-title {
    font-family: var(--font-ui) !important;
    font-size: 15px;
    font-weight: var(--fw-semibold);
    color: var(--brand-mauve);
    letter-spacing: 0.01em;
}
.product-detail-title {
    font-family: var(--font-ui) !important;
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: var(--fw-semibold);
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: var(--brand-mauve);
}

/* 13. Product Prices: Montserrat 600 */
.product-price,
.price-regular,
.price-container,
#product-price-span {
    font-family: var(--font-ui) !important;
    font-weight: var(--fw-semibold);
    letter-spacing: 0.01em;
}

/* 14. Form Labels & Inputs: Montserrat 400 or 500 */
label,
.form-label {
    font-family: var(--font-ui) !important;
    font-weight: var(--fw-medium);
    font-size: 0.875rem;
    letter-spacing: 0.01em;
}
.form-control,
.form-select {
    font-family: var(--font-ui) !important;
    font-weight: var(--fw-regular);
    font-size: 0.925rem;
}

/* 15. Supporting Accent Tagline ("INNER WEARS" motif from logo) */
.brand-accent-tag,
.brand-tagline {
    font-family: var(--font-ui) !important;
    font-weight: var(--fw-medium);
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--brand-rose-gold);
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    box-shadow: var(--box-shadow-soft);
    transition: var(--transition-smooth);
}
.glass-card:hover {
    box-shadow: var(--box-shadow-medium);
    transform: translateY(-4px);
}

/* Premium Buttons */
.btn-brand {
    background-color: var(--brand-rose-gold);
    color: var(--brand-white);
    border: 1px solid var(--brand-rose-gold);
    padding: 10px 24px;
    border-radius: 30px;
    transition: var(--transition-smooth);
}
.btn-brand:hover {
    background-color: var(--brand-mauve);
    border-color: var(--brand-mauve);
    color: var(--brand-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(93, 58, 66, 0.2);
}

.btn-brand-outline {
    background-color: transparent;
    color: var(--brand-rose-gold);
    border: 1px solid var(--brand-rose-gold);
    padding: 10px 24px;
    border-radius: 30px;
    transition: var(--transition-smooth);
}
.btn-brand-outline:hover {
    background-color: var(--brand-rose-gold);
    color: var(--brand-white);
    transform: translateY(-2px);
}

/* Navigation bar */
.navbar-brand {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--brand-mauve) !important;
    letter-spacing: 1.5px;
}
.navbar-brand img {
    max-height: 42px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}
.navbar-brand:hover img {
    transform: scale(1.02);
}
.navbar-veesta {
    background: rgba(250, 249, 246, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(93, 58, 66, 0.05);
}
.navbar-veesta .nav-link {
    color: var(--brand-charcoal);
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}
.navbar-veesta .nav-link:hover,
.navbar-veesta .nav-link.active {
    color: var(--brand-rose-gold);
}
.navbar-veesta .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--brand-rose-gold);
    transition: var(--transition-smooth);
}
.navbar-veesta .nav-link:hover::after,
.navbar-veesta .nav-link.active::after {
    width: 100%;
}

/* Product Cards */
.product-card {
    border: none;
    background: var(--brand-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow-soft);
    transition: var(--transition-smooth);
}
.product-card:hover {
    box-shadow: var(--box-shadow-medium);
    transform: translateY(-5px);
}
.product-card .img-container {
    position: relative;
    overflow: hidden;
    background-color: var(--brand-gray-light);
    aspect-ratio: 3/4;
}
.product-card .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.product-card:hover .img-container img {
    transform: scale(1.08);
}
.product-card .badge-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
}
.product-card .wishlist-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-rose-gold);
    cursor: pointer;
    transition: var(--transition-smooth);
}
.product-card .wishlist-overlay:hover {
    background: var(--brand-rose-gold);
    color: var(--brand-white);
}

.product-card .product-details {
    padding: 16px;
}
.product-card .product-category {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: var(--fw-medium);
    text-transform: uppercase;
    color: #8c7379;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}
.product-card .product-title {
    font-family: var(--font-ui) !important;
    font-size: 15px;
    font-weight: var(--fw-semibold);
    color: var(--brand-mauve);
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.01em;
}
.product-card .price-container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
}
.product-card .price-regular {
    font-family: var(--font-ui);
    color: var(--brand-rose-gold);
    font-weight: var(--fw-semibold);
    font-size: 16px;
}
.product-card .price-original {
    font-family: var(--font-ui);
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
    font-weight: var(--fw-regular);
}

/* Home Hero Banner */
.hero-slider {
    position: relative;
    background-color: var(--brand-blush);
    overflow: hidden;
}
.hero-item {
    height: 600px;
    background-size: cover;
    background-position: center;
}
.hero-item-inner {
    height: 100%;
}
@media (max-width: 768px) {
    .hero-item {
        height: 440px;
    }
}
.hero-content {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 42px;
    border-radius: 16px;
    max-width: 560px;
    animation: fadeInUp 1s ease;
}
.hero-content h1,
.hero-content h2,
.hero-heading {
    font-family: var(--font-display) !important;
    font-weight: var(--fw-semibold);
    line-height: var(--lh-hero);
    letter-spacing: -0.015em;
    color: var(--brand-mauve);
}
.hero-content .lead {
    font-family: var(--font-ui) !important;
    font-weight: var(--fw-regular);
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}
/* Product Detail Interactive Zoom & Gallery */
.product-gallery-main {
    background-color: var(--brand-white);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--box-shadow-soft);
    cursor: crosshair;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 460px;
}
.product-gallery-main img {
    max-height: 520px;
    width: 100%;
    object-fit: contain;
    transform-origin: center center;
    transition: transform 0.15s ease-out;
    will-change: transform;
    display: block;
}
.zoom-hint-badge {
    transition: opacity 0.3s ease;
    letter-spacing: 0.5px;
    pointer-events: none;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.gallery-thumb-item {
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 2px;
    transition: var(--transition-smooth);
    flex-shrink: 0;
    cursor: pointer;
}
.gallery-thumb-item.active,
.gallery-thumb-item:hover {
    border-color: var(--brand-rose-gold);
}
.gallery-thumb-item img {
    border-radius: 6px;
    width: 76px;
    height: 96px;
    object-fit: cover;
    display: block;
}
.lightbox-thumb {
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    cursor: pointer;
    flex-shrink: 0;
}
.lightbox-thumb.active {
    border-color: var(--brand-rose-gold) !important;
    opacity: 1 !important;
    transform: scale(1.08);
}
#lightbox-viewport {
    background-color: #0b0b0b;
}

/* Detail Page Swatches */
.swatch-color {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    border: 2px solid var(--brand-white);
    box-shadow: 0 0 0 1px #ccc;
    transition: var(--transition-smooth);
}
.swatch-color.active {
    box-shadow: 0 0 0 2px var(--brand-rose-gold);
}
.swatch-size {
    padding: 6px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: inline-block;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-smooth);
    background: var(--brand-white);
}
.swatch-size.active {
    background-color: var(--brand-rose-gold);
    color: var(--brand-white);
    border-color: var(--brand-rose-gold);
}
.swatch-size.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Header Cart Count Badge */
.cart-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: var(--brand-rose-gold);
    color: var(--brand-white);
    border-radius: 50%;
    font-size: 10px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Admin Dashboard layout */
.admin-sidebar {
    background-color: var(--brand-charcoal);
    min-height: 100vh;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
}
.admin-sidebar .nav-link {
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 20px;
    border-left: 3px solid transparent;
    transition: var(--transition-smooth);
}
.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    color: var(--brand-white);
    background-color: rgba(255, 255, 255, 0.05);
    border-left-color: var(--brand-rose-gold);
}
.admin-header {
    background-color: var(--brand-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 30px;
}

/* Keyframe animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Toast Notifications styling */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1060;
}

/* Size Guide Modal & Details */
.size-guide-table th {
    background-color: var(--brand-blush);
    color: var(--brand-mauve);
}

/* Premium Scoped Footer Layout */
.footer-veesta {
    background-color: var(--brand-mauve);
    color: var(--brand-white);
    font-family: var(--font-ui);
    position: relative;
    overflow: hidden;
}

.footer-veesta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-accent), var(--brand-rose-gold), var(--brand-accent));
}

.footer-veesta h5, 
.footer-veesta h6 {
    color: var(--brand-white) !important;
    font-family: var(--font-ui) !important;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
    font-weight: var(--fw-semibold);
    font-size: 0.8125rem;
    text-transform: uppercase;
}

.footer-veesta p {
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--font-ui);
    font-weight: var(--fw-regular);
    font-size: 14px;
    line-height: 1.7;
}

.footer-veesta .footer-link {
    color: rgba(255, 255, 255, 0.72) !important;
    font-family: var(--font-ui);
    font-weight: var(--fw-regular);
    font-size: 14px;
    transition: var(--transition-smooth);
    display: inline-block;
    padding: 3px 0;
    text-decoration: none;
}

.footer-veesta .footer-link:hover {
    color: var(--brand-accent) !important;
    transform: translateX(4px);
}

.footer-veesta .social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--brand-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.footer-veesta .social-icon:hover {
    background-color: var(--brand-rose-gold);
    color: var(--brand-white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(183, 110, 121, 0.3);
}

.footer-veesta .newsletter-input {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--brand-white);
    padding: 10px 16px;
    border-radius: 30px 0 0 30px;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.footer-veesta .newsletter-input:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--brand-rose-gold);
    box-shadow: none;
    color: var(--brand-white);
}

.footer-veesta .newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-veesta .newsletter-btn {
    background-color: var(--brand-rose-gold);
    color: var(--brand-white);
    border: 1px solid var(--brand-rose-gold);
    padding: 10px 24px;
    border-radius: 0 30px 30px 0;
    font-family: var(--font-ui);
    font-weight: var(--fw-semibold);
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.footer-veesta .newsletter-btn:hover {
    background-color: var(--brand-accent);
    border-color: var(--brand-accent);
    color: var(--brand-mauve);
}

.footer-veesta .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-veesta .contact-item i {
    color: var(--brand-rose-gold);
    font-size: 16px;
}

.footer-veesta .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

/* =========================================
   COMBO & BUNDLE BUILDER STYLES
   ========================================= */
.combo-badge {
    background: linear-gradient(135deg, #b76e79 0%, #8a7380 100%);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.combo-step-card {
    background: #ffffff;
    border: 1px solid #ede8e3;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.combo-step-card:hover {
    border-color: #d8c3bc;
    box-shadow: 0 4px 16px rgba(183, 110, 121, 0.08);
}

.combo-step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
    margin-bottom: 16px;
    border-bottom: 1px dashed #e8e2dc;
}

.combo-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--brand-blush);
    color: var(--brand-rose-gold);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.combo-step-title {
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: var(--fw-semibold);
    color: var(--brand-mauve);
    margin: 0;
}

.combo-summary-box {
    background: #fdfaf8;
    border: 2px dashed #e6d3cc;
    border-radius: 12px;
    padding: 18px;
    margin-top: 24px;
}

.combo-summary-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid #f1e9e4;
}

.combo-summary-item:last-child {
    border-bottom: none;
}

.combo-summary-item .item-choice {
    font-weight: 600;
    color: var(--brand-charcoal);
}

.combo-cart-tag {
    background-color: #f7eef0;
    color: #8c4253;
    border: 1px solid #f0d5db;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 13px;
    margin-top: 8px;
}

.combo-cart-tag ul {
    margin-bottom: 0;
    padding-left: 18px;
}


