/* Template Name: Shippay - Moroccan Rugs E-commerce
   Original Template: Landrick by Shreethemes
   Customized for: Shippay Moroccan Rugs
   
   COLOR PALETTE (Improved):
   --primary: #C4704B (Terracotta - warm, Moroccan-inspired)
   --primary-dark: #A85A38
   --primary-light: rgba(196, 112, 75, 0.1)
   --secondary: #2D4A3E (Deep Olive - earthy, natural)
   --accent: #D4A574 (Sand/Gold - warmth, luxury)
   --accent-dark: #B8956A
   --success: #5D8A66 (Sage Green - natural, organic)
   --warning: #E8B86D (Amber - warm highlight)
   --danger: #C75B5B (Muted Red)
   --dark: #2C3E50 (Deep Slate)
   --muted: #6B7C8A (Warm Gray)
   --light: #F8F6F3 (Warm White/Cream)
   --white: #FFFFFF
   --footer-bg: #1E2D26 (Deep Forest)
*/

/*********************************/
/*         CSS Variables         */
/*===============================*/
:root {
    /* Primary Colors - Terracotta Theme (Moroccan-inspired) */
    --primary: #C4704B;
    --primary-dark: #A85A38;
    --primary-darker: #8B4730;
    --primary-light: rgba(196, 112, 75, 0.1);
    --primary-rgb: 196, 112, 75;
    
    /* Secondary - Deep Olive */
    --secondary: #2D4A3E;
    --secondary-light: rgba(45, 74, 62, 0.1);
    
    /* Accent - Sand/Gold */
    --accent: #D4A574;
    --accent-dark: #B8956A;
    --accent-light: rgba(212, 165, 116, 0.15);
    
    /* Semantic Colors */
    --success: #5D8A66;
    --success-light: rgba(93, 138, 102, 0.1);
    --warning: #E8B86D;
    --warning-light: rgba(232, 184, 109, 0.1);
    --danger: #C75B5B;
    --danger-light: rgba(199, 91, 91, 0.1);
    --info: #5B8FA8;
    --info-light: rgba(91, 143, 168, 0.1);
    
    /* Neutrals */
    --dark: #2C3E50;
    --muted: #6B7C8A;
    --light: #F8F6F3;
    --lighter: #FAF9F7;
    --white: #FFFFFF;
    --border-color: #E8E4E0;
    
    /* Footer */
    --footer-bg: #1E2D26;
    --footer-border: #2A3F34;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(44, 62, 80, 0.08);
    --shadow-md: 0 4px 16px rgba(44, 62, 80, 0.12);
    --shadow-lg: 0 8px 32px rgba(44, 62, 80, 0.15);
    
    /* WhatsApp */
    --whatsapp: #25D366;
    --whatsapp-dark: #1fb855;
}

/*********************************/
/*         Font Imports          */
/*===============================*/
/* Premium Typography */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/*********************************/
/*         Bootstrap Overrides   */
/*===============================*/
@media (min-width: 1400px) {
    .container {
        max-width: 1140px !important;
    }
}

.row > * {
    position: relative;
}

h1, .h1 { font-size: 42px !important; }
h2, .h2 { font-size: 36px !important; }
h3, .h3 { font-size: 30px !important; }
h4, .h4 { font-size: 24px !important; }
h5, .h5 { font-size: 20px !important; }
h6, .h6 { font-size: 16px !important; }

.display-1 { font-size: 80px !important; }
.display-2 { font-size: 72px !important; }
.display-3 { font-size: 64px !important; }
.display-4 { font-size: 56px !important; }

/*********************************/
/*     Color Utility Classes     */
/*===============================*/
.bg-primary {
    background-color: var(--primary) !important;
}

.bg-soft-primary {
    background-color: var(--primary-light) !important;
    border: 1px solid var(--primary-light) !important;
    color: var(--primary) !important;
}

.text-primary {
    color: var(--primary) !important;
}

a.text-primary:hover, 
a.text-primary:focus {
    color: var(--primary-dark) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-soft-secondary {
    background-color: var(--secondary-light) !important;
    border: 1px solid var(--secondary-light) !important;
    color: var(--secondary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.bg-success {
    background-color: var(--success) !important;
}

.bg-soft-success {
    background-color: var(--success-light) !important;
    border: 1px solid var(--success-light) !important;
    color: var(--success) !important;
}

.text-success {
    color: var(--success) !important;
}

.bg-warning {
    background-color: var(--warning) !important;
}

.bg-soft-warning {
    background-color: var(--warning-light) !important;
    border: 1px solid var(--warning-light) !important;
    color: var(--warning) !important;
}

.text-warning {
    color: var(--warning) !important;
}

.bg-info {
    background-color: var(--info) !important;
}

.bg-soft-info {
    background-color: var(--info-light) !important;
    border: 1px solid var(--info-light) !important;
    color: var(--info) !important;
}

.text-info {
    color: var(--info) !important;
}

.bg-danger {
    background-color: var(--danger) !important;
}

.bg-soft-danger {
    background-color: var(--danger-light) !important;
    border: 1px solid var(--danger-light) !important;
    color: var(--danger) !important;
}

.text-danger {
    color: var(--danger) !important;
}

.bg-dark {
    background-color: var(--dark) !important;
}

.bg-soft-dark {
    background-color: rgba(44, 62, 80, 0.1) !important;
    border: 1px solid rgba(44, 62, 80, 0.1) !important;
    color: var(--dark) !important;
}

.text-dark {
    color: var(--dark) !important;
}

.bg-muted {
    background-color: var(--muted) !important;
}

.text-muted {
    color: var(--muted) !important;
}

.bg-light {
    background-color: var(--light) !important;
}

.text-light {
    color: var(--light) !important;
}

.bg-footer {
    background-color: var(--footer-bg) !important;
}

/*********************************/
/*         Buttons               */
/*===============================*/
.btn {
    padding: 8px 20px;
    outline: none;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    font-weight: 600;
    border-radius: 6px;
}

.btn:focus {
    box-shadow: none !important;
}

.btn.btn-sm {
    padding: 7px 16px;
    font-size: 10px;
}

.btn.btn-lg {
    padding: 14px 30px;
    font-size: 16px;
}

.btn.btn-pills {
    border-radius: 30px;
}

.btn-primary {
    background-color: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    color: var(--white) !important;
    box-shadow: 0 3px 5px 0 rgba(var(--primary-rgb), 0.3);
}

.btn-primary:hover, 
.btn-primary:focus, 
.btn-primary:active, 
.btn-primary.active, 
.btn-primary.focus {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: var(--white) !important;
}

.btn-soft-primary {
    background-color: var(--primary-light) !important;
    border: 1px solid var(--primary-light) !important;
    color: var(--primary) !important;
    box-shadow: 0 3px 5px 0 rgba(var(--primary-rgb), 0.2);
}

.btn-soft-primary:hover, 
.btn-soft-primary:focus, 
.btn-soft-primary:active, 
.btn-soft-primary.active, 
.btn-soft-primary.focus {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--white) !important;
}

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

.btn-outline-primary:hover, 
.btn-outline-primary:focus, 
.btn-outline-primary:active, 
.btn-outline-primary.active, 
.btn-outline-primary.focus, 
.btn-outline-primary:not(:disabled):not(.disabled):active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white) !important;
    box-shadow: 0 3px 5px 0 rgba(var(--primary-rgb), 0.3);
}

.btn-success {
    background-color: var(--success) !important;
    border: 1px solid var(--success) !important;
    color: var(--white) !important;
    box-shadow: 0 3px 5px 0 rgba(93, 138, 102, 0.3);
}

.btn-success:hover, 
.btn-success:focus, 
.btn-success:active, 
.btn-success.active, 
.btn-success.focus {
    background-color: #4A7553 !important;
    border-color: #4A7553 !important;
    color: var(--white) !important;
}

.btn-outline-success {
    border: 1px solid var(--success);
    color: var(--success);
    background-color: transparent;
}

.btn-outline-success:hover, 
.btn-outline-success:focus, 
.btn-outline-success:active {
    background-color: var(--success);
    border-color: var(--success);
    color: var(--white) !important;
}

.btn-light {
    color: var(--dark) !important;
    border: 1px solid var(--border-color) !important;
    background-color: var(--white) !important;
}

.btn-light:hover, 
.btn-light:focus, 
.btn-light:active {
    background-color: var(--light) !important;
    color: var(--dark) !important;
}

.btn.btn-icon {
    height: 36px;
    width: 36px;
    line-height: 34px;
    padding: 0;
}

.btn.btn-icon .icons {
    height: 16px;
    width: 16px;
    font-size: 16px;
}

.btn.btn-icon.btn-lg {
    height: 48px;
    width: 48px;
    line-height: 46px;
}

/*********************************/
/*     Enhanced Hero Section     */
/*===============================*/

/* Moroccan geometric pattern overlay */
.hero-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0L80 40L40 80L0 40z' fill='none' stroke='%23C4704B' stroke-width='1' opacity='0.08'/%3E%3Cpath d='M40 10L70 40L40 70L10 40z' fill='none' stroke='%23C4704B' stroke-width='1' opacity='0.05'/%3E%3Cpath d='M40 20L60 40L40 60L20 40z' fill='none' stroke='%23D4A574' stroke-width='1' opacity='0.08'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 1;
}

/* Larger, more immersive hero */
.bg-hero-immersive {
    min-height: 100vh;
    padding: 180px 0 100px;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .bg-hero-immersive {
        min-height: auto;
        padding: 150px 0 80px;
        background-attachment: scroll;
    }
}

/* Gradient overlay for better text readability */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.85) 50%,
        rgba(248, 246, 243, 0.7) 100%
    );
    z-index: 0;
}

/* Hero content styling */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 56px !important;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .text-primary {
    position: relative;
    display: inline-block;
}

.hero-title .text-primary::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent);
    opacity: 0.3;
    z-index: -1;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 38px !important;
    }
}

/* Story/Heritage badge */
.heritage-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    border: 1px solid var(--accent);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.heritage-badge .badge-icon {
    font-size: 20px;
}

.heritage-badge .badge-text {
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-dark);
}

/* Story element */
.hero-story {
    background: var(--white);
    border-left: 4px solid var(--accent);
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
    box-shadow: var(--shadow-sm);
}

.hero-story blockquote {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-style: italic;
    color: var(--dark);
    margin: 0 0 10px 0;
    line-height: 1.6;
}

.hero-story .story-attribution {
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}

.hero-story .story-attribution strong {
    color: var(--primary);
}

/* Feature checkmarks styling */
.hero-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--dark);
}

.hero-features li i {
    color: var(--success);
    font-size: 20px;
}

/* Hero image styling */
.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper img {
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.hero-image-wrapper::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100px;
    height: 100px;
    border: 3px solid var(--accent);
    border-right: none;
    border-bottom: none;
    border-radius: 12px 0 0 0;
    z-index: -1;
}

.hero-image-wrapper::after {
    content: "";
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    border: 3px solid var(--primary);
    border-left: none;
    border-top: none;
    border-radius: 0 0 12px 0;
    z-index: -1;
}

/* Floating stats */
.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.hero-stat .stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-top: 5px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.scroll-indicator a:hover {
    color: var(--primary);
}

.scroll-indicator i {
    font-size: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/*********************************/
/*         General Styles        */
/*===============================*/
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden !important;
    font-size: 16px;
    color: #2C3E50;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6, 
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "Cormorant Garamond", serif;
    line-height: 1.2;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.02em;
}

/* Specific heading refinements */
h1, .h1 {
    font-weight: 700;
    letter-spacing: 0.03em;
}

h2, .h2 {
    font-weight: 600;
}

/* For small labels and buttons - keep sans-serif */
.btn,
.badge,
.filter-btn,
.nav-link,
.navigation-menu > li > a {
    font-family: "Montserrat", sans-serif;
}

::selection {
    background: rgba(var(--primary-rgb), 0.9);
    color: var(--white);
}

a {
    text-decoration: none !important;
    transition: all 0.5s ease;
}

p {
    line-height: 1.6;
}

/*********************************/
/*         Helper Classes        */
/*===============================*/
.section {
    padding: 100px 0;
    position: relative;
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
}

.bg-overlay {
    background-color: rgba(44, 62, 80, 0.7);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.bg-overlay-white {
    background-color: rgba(255, 255, 255, 0.5);
}

.title-heading {
    line-height: 26px;
}

.title-heading .heading {
    font-size: 45px !important;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .title-heading .heading {
        font-size: 35px !important;
    }
}

.title-heading .para-desc {
    font-size: 18px;
}

.section-title .title {
    letter-spacing: 0.5px;
    font-size: 30px !important;
}

@media (max-width: 768px) {
    .section-title .title {
        font-size: 24px !important;
    }
}

.para-desc {
    max-width: 600px;
}

/*********************************/
/*         Utility Classes       */
/*===============================*/
.d-flex .flex-1 {
    flex: 1;
}

.rounded {
    border-radius: 6px !important;
}

.rounded-md {
    border-radius: 10px !important;
}

.rounded-lg {
    border-radius: 30px !important;
}

.border {
    border: 1px solid var(--border-color) !important;
}

.shadow {
    box-shadow: var(--shadow-sm) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

.shadow-md {
    box-shadow: var(--shadow-md) !important;
}

.small, small {
    font-size: 90%;
}

.card .card-body {
    padding: 1.5rem;
}

/*********************************/
/*         Badges                */
/*===============================*/
.badge {
    letter-spacing: 0.5px;
    padding: 4px 8px;
    font-weight: 600;
    line-height: 11px;
}

/*********************************/
/*         Alerts                */
/*===============================*/
.alert {
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
}

.alert.alert-light {
    background-color: var(--white);
    color: var(--dark);
    border-color: var(--border-color);
}

/*********************************/
/*         Forms                 */
/*===============================*/
.form-label,
.form-check-label {
    font-weight: 700;
    font-size: 14px;
}

.form-control {
    border: 1px solid var(--border-color);
    font-size: 14px;
    line-height: 26px;
    background-color: var(--white);
    border-radius: 6px;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: none;
}

.form-check-input:focus {
    border-color: var(--primary);
    box-shadow: none;
}

.form-check-input.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

/*********************************/
/*         Accordion             */
/*===============================*/
.accordion .accordion-item {
    overflow: hidden;
}

.accordion .accordion-item .accordion-button {
    font-weight: 600;
    text-align: left;
}

.accordion .accordion-item .accordion-button:focus {
    box-shadow: none;
}

.accordion .accordion-item .accordion-button:before {
    content: '\F0143';
    display: block;
    font-family: 'Material Design Icons';
    font-size: 16px;
    color: var(--primary);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s ease;
}

.accordion .accordion-item .accordion-button.collapsed {
    background-color: var(--white);
    color: var(--dark) !important;
    transition: all 0.5s;
}

.accordion .accordion-item .accordion-button.collapsed:before {
    top: 15px;
    transform: rotate(180deg);
    color: var(--dark) !important;
}

.accordion .accordion-item .accordion-button:after {
    display: none;
}

/*********************************/
/*         Navigation            */
/*===============================*/
#topnav {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    z-index: 999;
    background-color: transparent;
    border: 0;
    transition: all .5s ease;
}

#topnav .logo {
    float: left;
    color: var(--dark) !important;
}

#topnav .logo .l-dark,
#topnav .logo .logo-dark-mode {
    display: none;
}

#topnav .logo .l-light,
#topnav .logo .logo-light-mode {
    display: inline-block;
}

#topnav .logo:focus {
    outline: none;
}

#topnav .navigation-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

#topnav .navigation-menu > li {
    float: left;
    display: block;
    position: relative;
    margin: 0 10px;
}

#topnav .navigation-menu > li:hover > a,
#topnav .navigation-menu > li.active > a {
    color: var(--primary) !important;
}

#topnav .navigation-menu > li > a {
    display: block;
    color: var(--dark);
    font-size: 12px;
    background-color: transparent !important;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 24px;
    text-transform: uppercase;
    transition: all 0.5s;
    font-family: "Montserrat", sans-serif;
    padding-left: 15px;
    padding-right: 15px;
}

#topnav .navigation-menu > li > a:hover, 
#topnav .navigation-menu > li > a:active {
    color: var(--primary);
}

#topnav .navbar-toggle {
    border: 0;
    position: relative;
    width: 60px;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

#topnav .navbar-toggle .lines {
    width: 25px;
    display: block;
    position: relative;
    margin: 28px 20px;
    height: 18px;
}

#topnav .navbar-toggle span {
    height: 2px;
    width: 100%;
    background-color: var(--dark);
    display: block;
    margin-bottom: 5px;
    transition: transform .5s ease;
}

#topnav .buy-button {
    float: right;
    line-height: 68px;
}

#topnav .menu-extras {
    float: right;
}

#topnav.scroll,
#topnav.nav-sticky {
    background-color: var(--white);
    border: none;
    box-shadow: var(--shadow-sm);
}

#topnav.nav-sticky .logo .l-dark {
    display: inline-block;
}

#topnav.nav-sticky .logo .l-light {
    display: none;
}

.logo {
    font-weight: 700;
    font-size: 24px;
    margin-right: 15px;
    padding: 0 0 6px;
    letter-spacing: 1px;
    line-height: 68px;
}

.buy-button {
    overflow: visible !important;
}

#topnav .buy-button {
    overflow: visible !important;
}

@media (min-width: 992px) {
    #topnav .navigation-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    #topnav .navigation-menu > li > a {
        padding-top: 25px;
        padding-bottom: 25px;
        min-height: 62px;
    }
    
    #topnav .buy-button {
        padding-left: 15px;
        margin-left: 15px;
    }
    
    #topnav .navbar-toggle {
        display: none;
    }
    
    #topnav #navigation {
        display: block !important;
    }
}

@media (max-width: 991px) {
    #topnav {
        background-color: var(--white);
        box-shadow: var(--shadow-sm);
        min-height: 74px;
    }
    
    #topnav .logo .l-dark {
        display: inline-block !important;
    }
    
    #topnav .logo .l-light {
        display: none !important;
    }
    
    #topnav #navigation {
        max-height: 400px;
    }
    
    #topnav .navigation-menu {
        float: none;
    }
    
    #topnav .navigation-menu > li {
        float: none;
    }
    
    #topnav .navigation-menu > li > a {
        color: var(--dark);
        padding: 10px 20px;
    }
    
    #navigation {
        position: absolute;
        top: 74px;
        left: 0;
        width: 100%;
        display: none;
        height: auto;
        padding-bottom: 0;
        overflow: auto;
        border-top: 1px solid #f1f3f9;
        border-bottom: 1px solid #f1f3f9;
        background-color: var(--white);
    }
    
    #navigation.open {
        display: block;
        overflow-y: auto;
    }
}

@media (max-width: 768px) {
    #topnav .buy-button {
        padding: 3px 0;
    }
}

/*********************************/
/*         Trust Banner          */
/*===============================*/
.trust-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 15px 0;
    color: var(--white);
    margin-top: 80px;
}

.trust-banner .trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}

.trust-banner i {
    font-size: 20px;
}

/*********************************/
/*         Hero Section          */
/*===============================*/
.bg-half-170 {
    padding: 170px 0;
    background-size: cover;
    align-self: center;
    position: relative;
    background-position: center center;
}

@media (max-width: 767px) {
    .bg-half-170 {
        padding: 150px 0;
        height: auto;
    }
}

/*********************************/
/*         Features Section      */
/*===============================*/
.features .icon {
    background: var(--primary-light);
}

.features.feature-clean .icons i {
    height: 65px;
    width: 65px;
    line-height: 65px;
    background-color: var(--primary-light);
}

.features.feature-clean .title:hover {
    color: var(--primary) !important;
}

.features .title {
    font-size: 18px !important;
}

.features .icon {
    height: 45px;
    width: 45px;
    line-height: 45px;
}

/*********************************/
/*         Rug Cards             */
/*===============================*/
.rug-card {
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
}

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

.rug-card img {
    height: 280px;
    object-fit: cover;
    width: 100%;
    cursor: pointer;
    transition: transform 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.rug-card img.loaded {
    opacity: 1;
}

.rug-card:hover img {
    transform: scale(1.05);
}

.rug-card .card-body {
    padding: 1.25rem;
}

/* Rug Badge */
.rug-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
}

.rug-badge span {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
}

/* Star Ratings */
.stars {
    color: var(--warning);
    font-size: 14px;
    margin-bottom: 8px;
}

/* Color Dots */
.color-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.color-dot:hover, 
.color-dot.selected {
    border-color: var(--dark);
    transform: scale(1.1);
}

/*********************************/
/*         Filters               */
/*===============================*/
.filters-container {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.filter-group {
    margin-bottom: 15px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-label {
    font-weight: 600;
    margin-right: 15px;
    min-width: 70px;
    display: inline-block;
    color: var(--dark);
}

.filter-buttons {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-btn {
    padding: 6px 14px;
    border: 1px solid var(--border-color);
    background: var(--white);
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/*********************************/
/*         Cart Styles           */
/*===============================*/
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
}

.cart-overlay.show {
    display: block;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100vw;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

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

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background: var(--light);
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-remove {
    color: var(--danger);
    cursor: pointer;
    font-size: 18px;
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--danger);
    color: var(--white);
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cart-btn-wrapper {
    position: relative;
    display: inline-block;
    overflow: visible;
}

.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: var(--muted);
}

.empty-cart i {
    font-size: 60px;
    margin-bottom: 20px;
    color: var(--border-color);
}

/* Quantity Controls */
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.quantity-controls button {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border-color);
    background: var(--white);
    border-radius: 4px;
    cursor: pointer;
}

.quantity-controls button:hover {
    background: var(--light);
}

.quantity-controls span {
    min-width: 30px;
    text-align: center;
}

/* Floating Cart (Mobile) */
.floating-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-cart .btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

/*********************************/
/*         Modal Styles          */
/*===============================*/
.rug-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 99999;
}

.rug-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    z-index: 100000;
    overflow: hidden;
}

.rug-modal-content {
    display: flex;
    flex-wrap: wrap;
}

.rug-modal-image {
    flex: 0 0 50%;
    min-width: 280px;
}

.rug-modal-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.rug-modal-details {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    max-height: 500px;
    overflow-y: auto;
}

.rug-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

.modal-section-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 10px;
}

.modal-price {
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
}

.modal-sizes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.modal-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.modal-qty button {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--light);
    cursor: pointer;
    font-size: 20px;
}

.modal-qty span {
    min-width: 50px;
    text-align: center;
    font-weight: 600;
}

.modal-add-btn {
    width: 100%;
    padding: 14px 20px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.3s;
}

.modal-add-btn:hover {
    background: var(--primary-dark);
}

/* Size Options */
.size-option {
    border: 2px solid var(--border-color);
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.size-option:hover {
    border-color: var(--primary);
}

.size-option.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}

/* Size Guide */
.size-guide-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 13px;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

.size-guide-visual {
    display: none;
    background: var(--light);
    border-radius: 8px;
    padding: 15px;
    margin-top: 10px;
}

.size-guide-visual.show {
    display: block;
}

.size-box {
    border: 2px dashed var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
    font-size: 11px;
    color: var(--muted);
    background: var(--white);
}

@media (max-width: 768px) {
    .rug-modal-image img {
        height: 300px;
    }
    
    .rug-modal-details {
        max-height: none;
    }
}

/*********************************/
/*         Floating WhatsApp     */
/*===============================*/
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.floating-whatsapp a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--whatsapp);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
}

.floating-whatsapp a:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

.floating-whatsapp i {
    font-size: 24px;
}

/*********************************/
/*         Newsletter            */
/*===============================*/
.newsletter-section {
    background: var(--secondary);
    padding: 40px 0;
}

.newsletter-input {
    border: none;
    padding: 12px 20px;
    border-radius: 6px 0 0 6px;
    width: 100%;
    max-width: 300px;
}

.newsletter-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 0 6px 6px 0;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-btn:hover {
    background: var(--primary-dark);
}

/*********************************/
/*         Testimonials          */
/*===============================*/
.client-testi {
    cursor: e-resize;
}

.client-testi .client-image {
    margin-right: 16px;
}

.client-testi .content:before {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    margin-left: 13px;
    box-sizing: border-box;
    border: 8px solid var(--dark);
    border-color: transparent var(--white) var(--white) transparent;
    transform-origin: 0 0;
    transform: rotate(135deg);
    box-shadow: 2px 2px 2px -1px rgba(60, 72, 88, 0.15);
}

/* Avatar for testimonials */
.avatar.avatar-small {
    height: 65px;
    width: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    font-size: 28px;
}

.tns-nav {
    text-align: center;
    margin-top: 10px;
}

.tns-nav button {
    border-radius: 3px;
    background: rgba(var(--primary-rgb), 0.5) !important;
    transition: all 0.5s ease;
    border: none;
    margin: 0 5px;
    padding: 5px;
}

.tns-nav button.tns-nav-active {
    background: var(--primary) !important;
    transform: rotate(45deg);
}

/*********************************/
/*         Footer                */
/*===============================*/
.footer {
    background: var(--footer-bg);
    padding: 60px 0;
    position: relative;
    color: #adb5bd;
}

.footer .logo-footer {
    font-size: 22px;
}

.footer .logo-footer:focus {
    outline: none;
}

.footer .footer-head {
    letter-spacing: 1px;
    font-weight: 500;
}

.footer .text-foot {
    color: #adb5bd;
}

.footer .footer-list {
    margin-bottom: 0;
}

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

.footer .footer-list li a {
    transition: all 0.5s ease;
}

.footer .footer-list li a:hover {
    color: #e6e8ea;
}

.footer .footer-list li:last-child {
    margin-bottom: 0;
}

.footer.footer-border, 
.footer.footer-bar {
    border-top: 1px solid var(--footer-border);
}

.footer.footer-bar {
    padding: 30px 0;
}

/* Social Icons */
.social-icon li a {
    color: var(--dark);
    border: 1px solid var(--dark);
    display: inline-block;
    height: 32px;
    width: 32px;
    line-height: 28px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.social-icon li a .fea-social {
    stroke-width: 2;
}

.social-icon li a:hover {
    background-color: var(--primary);
    border-color: var(--primary) !important;
    color: var(--white) !important;
}

.social-icon.foot-social-icon li a {
    color: #adb5bd;
    border-color: var(--footer-border);
}

/* Payment Icons */
.footer .list-inline-item .uil {
    font-size: 28px;
    color: #EEEEEE;
}

/*********************************/
/*         Back to Top           */
/*===============================*/
.back-to-top {
    z-index: 99;
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    transition: all 0.5s ease;
}

.back-to-top .icons {
    transition: all 0.5s ease;
}

.back-to-top:hover {
    transform: rotate(45deg);
}

.back-to-top:hover .icons {
    transform: rotate(-45deg);
}

/*********************************/
/*         Loader                */
/*===============================*/
.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid var(--accent);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
    margin: auto;
    text-align: center;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/*********************************/
/*         Icon Sizing           */
/*===============================*/
.fea {
    stroke-width: 1.8;
}

.fea.icon-sm {
    height: 16px;
    width: 16px;
}

.fea.icon-md {
    height: 35px;
    width: 35px;
}

.fea.icon-lg {
    height: 42px;
    width: 42px;
}

[class^=uil-]:before,
[class*=" uil-"]:before {
    margin: 0;
}

/*********************************/
/*         Responsive            */
/*===============================*/
@media (max-width: 768px) {
    .display-1 { font-size: 56px !important; }
    .display-2 { font-size: 50px !important; }
    .display-3 { font-size: 42px !important; }
    .display-4 { font-size: 36px !important; }
}

@media (max-width: 576px) {
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .floating-whatsapp a span {
        display: none;
    }
    
    .floating-whatsapp a {
        padding: 12px;
        border-radius: 50%;
    }
}

/*********************************/
/*   Moroccan Decorative Elements */
/*===============================*/

/* Decorative section divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.section-divider::before,
.section-divider::after {
    content: "";
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.section-divider .divider-icon {
    margin: 0 15px;
    color: var(--primary);
    font-size: 20px;
}

/* Moroccan diamond pattern for section titles */
.title::after {
    content: "◆";
    display: block;
    color: var(--accent);
    font-size: 12px;
    margin-top: 15px;
    letter-spacing: 8px;
}

.title.no-decoration::after {
    display: none;
}

/* Decorative border accent */
.moroccan-border {
    position: relative;
}

.moroccan-border::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary), var(--accent));
    border-radius: 2px;
}

/* Geometric corner accents for cards */
.card-moroccan {
    position: relative;
}

.card-moroccan::before,
.card-moroccan::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent);
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.card-moroccan::before {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.card-moroccan::after {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.card-moroccan:hover::before,
.card-moroccan:hover::after {
    opacity: 0.6;
}

/* Subtle pattern background for sections */
.bg-pattern {
    position: relative;
}

.bg-pattern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='%23C4704B' fill-opacity='0.03'/%3E%3C/svg%3E");
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

.bg-pattern > * {
    position: relative;
    z-index: 1;
}

/* Accent line under headings */
.heading-accent {
    position: relative;
    display: inline-block;
}

.heading-accent::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

/* Decorative quote style for testimonials */
.testimonial-quote {
    position: relative;
    padding-left: 30px;
}

.testimonial-quote::before {
    content: """;
    position: absolute;
    left: 0;
    top: -10px;
    font-family: "Cormorant Garamond", serif;
    font-size: 60px;
    color: var(--accent);
    opacity: 0.5;
    line-height: 1;
}

/* Elegant price display */
.price-display {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--primary);
}

.price-display .currency {
    font-size: 18px;
    vertical-align: top;
}

.price-display .unit {
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: var(--muted);
}

/* SKU Badge Styles - Add to your style.css */

/* SKU badge on product cards */
.rug-card .rug-sku {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: monospace;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* SKU in modal */
.modal-sku {
    display: inline-block;
    background: #f5f5f5;
    color: #666;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    font-family: monospace;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.step-number {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin: 0 auto 15px;
}

.step-icon {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Optional: Add connecting line between steps on desktop */
@media (min-width: 768px) {
    .col-md-3:not(:last-child) .step-icon::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -10%;
        width: 20%;
        height: 2px;
        background: linear-gradient(90deg, var(--primary), transparent);
    }
    
    .col-md-3 {
        position: relative;
    }
}

.rug-card .rug-sku {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: monospace;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* SKU in modal */
.modal-sku {
    display: inline-block;
    background: #f5f5f5;
    color: #666;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    font-family: monospace;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

/* Availability badge on product cards */
.rug-card .rug-sku {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: monospace;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Discount badge - top right */
.rug-card .rug-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

/* Availability badge - bottom left of image */
.rug-card .availability-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
}

.availability-badge.in-stock {
    background: rgba(40, 167, 69, 0.95);
    color: #fff;
}

.availability-badge.made-to-order {
    background: rgba(255, 193, 7, 0.95);
    color: #333;
}

/* Make sure rug-card image container is relative */
.rug-card {
    position: relative;
}

/* SKU inline - small text next to title */
.rug-sku-inline {
    font-size: 10px;
    font-weight: 600;
    color: #999;
    font-family: monospace;
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 3px;
    white-space: nowrap;
}

/* Stock badge - small inline badge */
.stock-badge {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

.stock-badge.in-stock {
    background: #e8f5e9;
    color: #2e7d32;
}

.stock-badge.made-to-order {
    background: #fff8e1;
    color: #f57c00;
}

.stock-badge i {
    font-size: 12px;
}

/* SKU in modal */
.modal-sku {
    display: inline-block;
    background: #f5f5f5;
    color: #666;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    font-family: monospace;
    letter-spacing: 0.5px;
    margin-right: 8px;
}

/* Availability badge in modal */
.rug-modal-details .availability-badge {
    display: inline-flex;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    align-items: center;
    gap: 4px;
    vertical-align: middle;
}

.availability-badge.in-stock {
    background: #e8f5e9;
    color: #2e7d32;
}

.availability-badge.made-to-order {
    background: #fff8e1;
    color: #f57c00;
}

/* Delivery estimate in modal */
.delivery-estimate {
    background: #f8f9fa;
    border-left: 3px solid var(--primary);
    padding: 10px 15px;
    font-size: 13px;
    color: #555;
    border-radius: 0 4px 4px 0;
}

.delivery-estimate i {
    margin-right: 5px;
    color: var(--primary);
}

/* Cart item availability status */
.cart-item-details .text-success {
    font-size: 11px;
}

.cart-item-details .text-warning {
    font-size: 11px;
    color: #e6a000 !important;
}

/* Remove old absolute positioned badges if they exist */
.rug-card .rug-sku {
    display: none;
}

.rug-card .availability-badge {
    display: none;
}








