/* File Path: /public_html/assets/css/style.css /
/

SIGMA LUGGAGE - Public B2C Retail Design System

Master Stylesheet for Storefront, Cart, Checkout, and CMS
*/

/* STREAMING_CHUNK:Importing enterprise fonts and mapping brand variables... */
@import url('https://fonts.googleapis.com/css2?family=Carme&family=Inter:wght@400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
/* Primary Brand Colors */
--sigma-primary: #D61B5D;
--sigma-primary-dark: #B9154D;
--sigma-primary-light: #fce8ee;

/* Semantic Colors */
--sigma-yellow: #F9B900;
--sigma-blue: #2278BD;
--sigma-success: #28A745;
--sigma-danger: #DC3545;

/* Surface Colors */
--sigma-white: #FFFFFF;
--sigma-bg-light: #F8F9FA;
--sigma-bg-section: #F1F5F9;

/* Typography Colors */
--sigma-text-dark: #111827;
--sigma-text-medium: #4B5563;
--sigma-text-light: #9CA3AF;
--sigma-navy: #1D263B;

/* Borders & Depth */
--sigma-border: #E5E9F2;
--shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
--shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
--radius-md: 0.75rem;
--radius-lg: 1.5rem;

/* Font Families */
--font-heading: 'Poppins', sans-serif;
--font-body: 'Inter', sans-serif;
--font-accent: 'Carme', sans-serif;


}

/* STREAMING_CHUNK:Defining base typography and global resets... /
/ ==========================================================================

BASE TYPOGRAPHY & RESETS
========================================================================== */
body {
font-family: var(--font-body);
background-color: var(--sigma-white);
color: var(--sigma-text-medium);
-webkit-font-smoothing: antialiased;
font-size: 1rem;
line-height: 1.6;
overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
font-family: var(--font-heading);
color: var(--sigma-text-dark);
font-weight: 700;
letter-spacing: -0.5px;
}

.font-body { font-family: var(--font-body) !important; }
.text-primary { color: var(--sigma-primary) !important; }
.bg-primary { background-color: var(--sigma-primary) !important; }
.bg-light { background-color: var(--sigma-bg-light) !important; }

/* Utilities */
.fs-7 { font-size: 0.875rem !important; }
.fs-8 { font-size: 0.75rem !important; }

.tracking-wide { letter-spacing: 1px !important; }
.transition-hover { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.transition-hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md) !important; }
.max-w-800 { max-width: 800px; margin-left: auto; margin-right: auto; }

/* STREAMING_CHUNK:Styling primary call-to-action buttons... /
/ ==========================================================================
2. BUTTONS & FORMS
========================================================================== */
.btn {
font-family: var(--font-heading);
font-weight: 600;
transition: all 0.3s ease;
}

.btn-sigma-primary {
background-color: var(--sigma-primary);
color: var(--sigma-white);
border-radius: 50rem;
padding: 0.8rem 2rem;
border: 2px solid var(--sigma-primary);
}

.btn-sigma-primary:hover {
background-color: var(--sigma-primary-dark);
border-color: var(--sigma-primary-dark);
color: var(--sigma-white);
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(214, 27, 93, 0.25);
}

.btn-sigma-white {
background-color: var(--sigma-white);
color: var(--sigma-text-dark);
border: 2px solid var(--sigma-border);
border-radius: 50rem;
}

.btn-sigma-white:hover {
background-color: var(--sigma-bg-light);
border-color: var(--sigma-primary);
color: var(--sigma-primary);
}

.form-control, .form-select {
border-radius: var(--radius-md);
padding: 0.8rem 1.25rem;
border: 1px solid var(--sigma-border);
font-family: var(--font-body);
background-color: var(--sigma-bg-light);
}

.form-control:focus, .form-select:focus {
background-color: var(--sigma-white);
border-color: var(--sigma-primary);
box-shadow: 0 0 0 4px rgba(214, 27, 93, 0.1);
}

/* STREAMING_CHUNK:Configuring storefront header and navigation... /
/ ==========================================================================
3. HEADER & NAVIGATION
========================================================================== */
.sigma-navbar {
transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
border-bottom: 1px solid var(--sigma-border) !important;
}

.sigma-navbar.scrolled {
padding-top: 0.5rem !important;
padding-bottom: 0.5rem !important;
box-shadow: var(--shadow-sm);
}

.nav-icon {
font-size: 1.5rem;
color: var(--sigma-text-dark);
transition: color 0.2s;
}
.nav-icon:hover { color: var(--sigma-primary); }

/* STREAMING_CHUNK:Building E-Commerce Product Cards and Grids... /
/ ==========================================================================
4. PRODUCT CARDS & CATALOG
========================================================================== */
.product-card {
transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover { transform: translateY(-5px); }

.product-card .img-primary { transition: opacity 0.4s ease; opacity: 1; position: absolute; top:50%; left:50%; transform:translate(-50%,-50%); max-height: 90%; object-fit: contain; width:90%; }
.product-card .img-secondary { position: absolute; top:50%; left:50%; transform:translate(-50%,-50%); max-height: 90%; object-fit: contain; width:90%; transition: opacity 0.4s ease; opacity: 0; }
.product-card:hover .img-primary { opacity: 0; }
.product-card:hover .img-secondary { opacity: 1; }

.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 300px; gap: 1.5rem; }
.bento-item { border-radius: var(--radius-lg); overflow: hidden; position: relative; text-decoration: none; display: flex; align-items: flex-end; padding: 2rem; transition: transform 0.4s ease; background-color: #e2e8f0; }
.bento-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.bento-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.7s ease; z-index: 0; }
.bento-item:hover .bento-bg { transform: scale(1.08); }
.bento-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%); z-index: 1; }
.bento-content { position: relative; z-index: 2; color: white; width: 100%; }
.bento-content h3 { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 0.5rem; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-wide { grid-column: span 2; grid-row: span 1; }

/* STREAMING_CHUNK:Setting up Product Detail interactions (Variants/Swatches)... /
/ ==========================================================================
5. PRODUCT DETAILS & VARIANTS
========================================================================== */
.gallery-main {
background: #ffffff; border-radius: var(--radius-lg);
box-shadow: 0 10px 40px rgba(0,0,0,0.04);
overflow: hidden; position: relative; border: 1px solid rgba(0,0,0,0.03);
}
.gallery-main img { width: 100%; height: 550px; object-fit: contain; transition: transform 0.4s ease; cursor: zoom-in; }
.gallery-main:hover img { transform: scale(1.05); }

.thumb-strip { scroll-behavior: smooth; -ms-overflow-style: none; scrollbar-width: none; }
.thumb-strip::-webkit-scrollbar { display: none; }
.thumb-btn {
border: 2px solid transparent; border-radius: 1rem; overflow: hidden; padding: 0;
background: #fff; transition: all 0.2s; opacity: 0.6; cursor: pointer;
}
.thumb-btn:hover { opacity: 0.9; transform: translateY(-2px); }
.thumb-btn.active { border-color: var(--sigma-primary); opacity: 1; box-shadow: 0 4px 15px rgba(214, 27, 93, 0.15); }
.thumb-btn img { width: 85px; height: 85px; object-fit: cover; }

.size-card {
border: 2px solid var(--sigma-border); border-radius: 1rem; padding: 1rem; cursor: pointer;
transition: all 0.2s ease; background: #fff; position: relative; overflow: hidden;
}
.size-card:hover { border-color: #cbd5e1; background: var(--sigma-bg-light); }
.size-card.active {
border-color: var(--sigma-primary); background: var(--sigma-primary-light);
box-shadow: 0 4px 15px rgba(214, 27, 93, 0.08);
}

.color-swatch {
width: 42px; height: 42px; border-radius: 50%; cursor: pointer;
border: 3px solid #fff; box-shadow: 0 0 0 1px #dee2e6; transition: all 0.2s; display: inline-block; position: relative;
}
.color-swatch:hover { transform: scale(1.1); box-shadow: 0 0 0 2px #adb5bd; }
.color-swatch.active { box-shadow: 0 0 0 2px var(--sigma-primary); transform: scale(1.15); }

/* STREAMING_CHUNK:Styling Cart and Checkout engines... /
/ ==========================================================================
6. CART & CHECKOUT UI
========================================================================== */
.qty-stepper, .qty-wrapper {
border: 2px solid var(--sigma-border); border-radius: 50rem; display: inline-flex;
overflow: hidden; background: #fff; height: 45px; align-items: center;
}
.qty-stepper button, .qty-wrapper button {
width: 40px; border: none; background: transparent; font-weight: bold; font-size: 1.2rem;
color: var(--sigma-text-dark); transition: background 0.2s;
}
.qty-stepper button:hover, .qty-wrapper button:hover { background: var(--sigma-bg-light); }
.qty-stepper input, .qty-wrapper input {
width: 45px; text-align: center; border: none; background: transparent; font-weight: 700; font-size: 1rem;
}

.cart-card { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--sigma-border); box-shadow: 0 10px 30px rgba(0,0,0,0.02); overflow: hidden; }
.cart-item-row { border-bottom: 1px solid var(--sigma-border); padding: 1.5rem 0; transition: background 0.2s; }
.cart-item-row:hover { background: #f8fafc; }
.cart-img-wrap { width: 100px; height: 100px; border-radius: 1rem; background: var(--sigma-bg-light); display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 0.5rem; }

.summary-card { background: var(--sigma-navy); border-radius: var(--radius-lg); padding: 2rem; color: white; box-shadow: var(--shadow-md); position: sticky; top: 100px; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 1rem; color: #9ca3af; font-size: 0.95rem; }
.summary-row.total { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 1rem; padding-top: 1.5rem; color: white; font-size: 1.3rem; font-weight: 700; font-family: var(--font-heading);}

.payment-method { border: 2px solid var(--sigma-border); border-radius: var(--radius-md); padding: 1rem; margin-bottom: 1rem; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; gap: 1rem; }
.payment-method:hover { border-color: #cbd5e1; background: var(--sigma-bg-light); }
.payment-method.active { border-color: var(--sigma-primary); background: var(--sigma-primary-light); }

/* STREAMING_CHUNK:Configuring CMS blocks and footer layouts... /
/ ==========================================================================
7. CMS BLOCKS & FOOTER
========================================================================== */
.promo-ticker { background: var(--sigma-primary); color: white; padding: 1rem 0; overflow: hidden; white-space: nowrap; font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; letter-spacing: 2px; text-transform: uppercase; }
.ticker-content { display: inline-block; animation: ticker 20s linear infinite; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.product-rich-description { color: var(--sigma-text-medium); line-height: 1.8; font-size: 1.1rem; }
.product-rich-description h2, .product-rich-description h3 { font-family: var(--font-heading); font-weight: 700; color: var(--sigma-text-dark); margin-top: 2rem; margin-bottom: 1rem; }

.sigma-footer { background-color: var(--sigma-bg-light); padding: 4rem 0 2rem; border-top: 1px solid var(--sigma-border); }
.footer-heading { font-family: var(--font-heading); font-weight: 800; color: var(--sigma-text-dark); margin-bottom: 1.5rem; font-size: 0.95rem; }
.footer-link { display: block; color: var(--sigma-text-medium); text-decoration: none; margin-bottom: 0.75rem; font-size: 0.95rem; transition: color 0.2s; }
.footer-link:hover { color: var(--sigma-primary); }

/* STREAMING_CHUNK:Finalizing mobile responsiveness and table stacking... /
/ ==========================================================================
8. MOBILE RESPONSIVE UTILITIES
========================================================================== */
@media (max-width: 991px) {
.navbar-collapse {
background: white;
padding: 1rem;
border-radius: 0 0 1rem 1rem;
box-shadow: var(--shadow-md);
position: absolute;
width: 100%;
left: 0;
top: 100%;
}

.bento-grid { grid-template-columns: 1fr; grid-auto-rows: 250px; } 
.bento-large, .bento-wide { grid-column: span 1; grid-row: span 1; }

.table-mobile-stack, .table-mobile-stack tbody, .table-mobile-stack tr, .table-mobile-stack td {
    display: block !important; width: 100% !important;
}
.table-mobile-stack thead { display: none !important; }
.table-mobile-stack tr {
    margin-bottom: 1rem; background-color: white; border: 1px solid var(--sigma-border) !important;
    border-radius: var(--radius-md); box-shadow: var(--shadow-sm); padding: 0.5rem;
}
.table-mobile-stack td {
    display: flex !important; justify-content: space-between; align-items: center;
    text-align: right !important; padding: 0.75rem 1rem !important; border-bottom: 1px solid var(--sigma-border) !important; border-top: none !important;
}
.table-mobile-stack td:last-child { border-bottom: none !important; }
.table-mobile-stack td::before {
    content: attr(data-label); font-family: var(--font-heading); font-weight: 600; font-size: 0.75rem; color: var(--sigma-text-medium);
    text-transform: uppercase; text-align: left; flex-shrink: 0; margin-right: 15px; max-width: 45%;
}


}