:root {
    --primary-color: #e9571c;
    /* Brand Orange */
    --primary-hover: #cf4d19;
    --secondary-color: #1a1a1a;
    --text-color: #2d3436;
    --text-light: #636e72;
    --bg-light: #f4f6f8;
    /* Slightly darker than white for better contrast with cards */
    --white: #ffffff;
    --border-color: #eef2f5;
    --success-color: #00b894;
    /* Brighter, modern green */
    --price-color: #e9571c;
    --product-name-color: #1a1a1a;

    --font-heading: 'Outfit', sans-serif;
    --font-main: 'Roboto', sans-serif;

    --container-width: 1280px;
    /* Slightly wider */

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
    /* Softer, deeper shadow */
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);

    --radius-sm: 8px;
    --radius-md: 16px;
    /* More rounded */
    --radius-pill: 50px;
}

/* Dark Mode Overrides */
body[data-theme="dark"] {
    --bg-light: #0f1113;
    --white: #1a1c1e;
    --text-color: #e9ecef;
    --text-light: #adb5bd;
    --border-color: #2c3034;
    --secondary-color: #f8f9fa;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.6);
}

body[data-theme="dark"] .main-header {
    background-color: #1a1c1e;
}

body[data-theme="dark"] .vertical-menu-container,
body[data-theme="dark"] .product-card,
body[data-theme="dark"] .product-description,
body[data-theme="dark"] .product-video,
body[data-theme="dark"] .cart-page>.container>div {
    background-color: #1a1c1e;
    border-color: #2c3034;
}

body[data-theme="dark"] .search-bar input {
    background-color: #2c3034;
    color: white;
}

body[data-theme="dark"] .action-item,
body[data-theme="dark"] .action-item i {
    color: #e9ecef;
}

body[data-theme="dark"] .section-title {
    color: #f8f9fa;
}

body[data-theme="dark"] .product-title,
body[data-theme="dark"] .new-price {
    color: #f8f9fa;
}

body[data-theme="dark"] .btn-details {
    background-color: #2c3034;
    border-color: #3e444a;
    color: #adb5bd;
}

body[data-theme="dark"] .top-strip {
    background: #1a1c1e;
    border-bottom: 1px solid #2c3034;
}

body[data-theme="dark"] .vertical-menu ul li a {
    color: #adb5bd;
}

body[data-theme="dark"] footer {
    background-color: #000;
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-color);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Top Bar */
.top-bar {
    background-color: var(--secondary-color);
    border-bottom: none;
    font-size: 13px;
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Main Header */
.main-header {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 9999;
    backdrop-filter: none;
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 60px;
    /* Adjust height based on header size */
    width: auto;
    object-fit: contain;
}

.search-bar {
    flex: 1;
    position: relative;
    max-width: 600px;
}

.search-bar input {
    width: 100%;
    padding: 14px 20px;
    padding-right: 50px;
    border: 2px solid transparent;
    background-color: #f1f2f6;
    border-radius: 50px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.search-bar input:focus {
    background-color: white;
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.15);
}

.search-bar button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.search-bar button:hover {
    transform: scale(1.05);
}

.header-actions {
    display: flex;
    gap: 30px;
    align-items: center;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
    color: var(--text-color);
    font-weight: 500;
}

.action-item i {
    font-size: 22px;
    color: var(--text-color);
    transition: color 0.3s;
}

.action-item:hover i {
    color: var(--primary-color);
}

.cart-count {
    background-color: var(--primary-color);
    color: white;
    font-size: 11px;
    font-weight: bold;
    height: 18px;
    width: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    right: -8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Navigation */
.main-nav {
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.main-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-nav ul {
    display: flex;
    gap: 10px;
    width: 100%;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: block;
    padding: 15px 15px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-color);
    /* Text Orange */
    border-radius: var(--radius-sm);
    border: none;
}

.main-nav a:hover {
    background-color: var(--primary-color);
    /* Background Orange */
    color: white;
    /* Text White */
}

.all-categories {
    background-color: var(--secondary-color);
    color: white;
    padding: 15px 30px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-right: 20px;
    border-radius: var(--radius-sm);
}

.all-categories:hover {
    background-color: black;
}

@import url('https://fonts.googleapis.com/css?family=Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');

/* User-Provided Horizontal Navigation Style - Adjusted */
.horizontal-nav {
    background: #fff;
    border-bottom: 2px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 90px;
    z-index: 9998;
    min-height: 70px;
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.horizontal-nav .container {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.drop-down {
    display: flex;
    align-items: center;
    position: relative;
}

.drop-down__button {
    background: var(--primary-color);
    background: var(--btn-gradient);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    text-align: left;
    border-radius: 8px;
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 45px;
    height: auto;
    text-decoration: none;
    max-width: 220px;
}

.drop-down__button:hover {
    transform: translateY(-3px);
    box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.15);
}

.drop-down__name {
    font-size: 11px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.5px;
    font-family: 'Raleway', sans-serif;
    line-height: 1.2;
    margin-right: 8px;
}

.drop-down__icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    vertical-align: middle;
    margin-left: 10px;
    transition: all 0.4s;
    fill: #fff;
    filter: brightness(0) invert(1);
}

.drop-down__menu-box {
    position: absolute;
    width: auto;
    min-width: 240px;
    left: 50%;
    top: 100%;
    transform: translateX(-50%) translateY(15px);
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    visibility: hidden;
    opacity: 0;
    margin-top: 8px;
    z-index: 9999;
    padding: 10px 0;
}

.drop-down:hover .drop-down__menu-box {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.drop-down__menu {
    margin: 0;
    padding: 0 15px;
    list-style: none;
}

.drop-down__menu-box:before {
    content: '';
    background-color: transparent;
    border-right: 8px solid transparent;
    position: absolute;
    border-left: 8px solid transparent;
    border-bottom: 8px solid #fff;
    border-top: 8px solid transparent;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.drop-down__item {
    font-size: 12px;
    padding: 10px 0;
    padding-right: 35px;
    text-align: left;
    font-weight: 600;
    color: #4b5563;
    cursor: pointer;
    position: relative;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.2s;
    text-transform: uppercase;
}

.drop-down__item a {
    color: inherit;
    text-decoration: none;
    display: block;
    width: 100%;
}

.drop-down__item-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    position: absolute;
    right: 0px;
    fill: #b2bec3;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.2s;
}

.drop-down__item:hover .drop-down__item-icon {
    fill: var(--primary-color);
}

.drop-down__item:hover {
    color: var(--primary-color);
}

.drop-down__item:last-of-type {
    border-bottom: 0;
}

.drop-down__item:before {
    content: '';
    position: absolute;
    width: 3px;
    height: 20px;
    background-color: var(--primary-color);
    left: -13px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}

.drop-down__item:hover:before {
    display: block;
}

/* Dark Mode Tweaks */
body[data-theme="dark"] .horizontal-nav {
    background-color: #1a1c1e;
    border-bottom-color: #2c3034;
}

body[data-theme="dark"] .horizontal-nav .submenu-h {
    background-color: #1a1c1e;
    border-color: #2c3034;
}

body[data-theme="dark"] .horizontal-nav .submenu-h a {
    color: #adb5bd;
}

body[data-theme="dark"] .horizontal-nav .submenu-h a:hover {
    background-color: #2c3034;
}

/* Hero Section */
.hero {
    padding: 30px 0;
    background-color: transparent;
    box-shadow: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 20px;
    height: 420px;
}

.main-banner {
    background: linear-gradient(135deg, #2d3436 0%, #000000 100%);
    height: 100%;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.main-banner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at top right, rgba(255, 102, 0, 0.2), transparent 40%);
    z-index: 0;
}

.main-banner::before {
    content: 'OFF';
    position: absolute;
    font-size: 200px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    right: -20px;
    bottom: -40px;
    transform: rotate(-10deg);
}

.main-banner>div {
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px 60px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    transform: none;
    /* Removed skew */
    text-align: center;
}

.main-banner>div span {
    font-size: 18px;
    display: block;
    margin-top: 10px;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.side-banners {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.small-banner {
    background-color: white;
    flex: 1;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.small-banner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.small-banner:hover::before {
    transform: translateX(100%);
}

.small-banner:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    color: var(--primary-color);
}

/* Products Section */
/* Section Title Modern */
.section-title {
    font-family: var(--font-heading);
    font-size: 28px;
    /* Larger */
    font-weight: 800;
    /* Bolder */
    color: var(--secondary-color);
    margin: 80px 0 40px;
    /* More whitespace */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-left: 20px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    width: 6px;
    background: var(--primary-color);
    border-radius: 4px;
}

.section-title span {
    border-bottom: none;
}

.section-title span::after {
    display: none;
    /* Remove underline style */
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

/* Modern Product Card */
.product-card {
    background: white;
    border: 1px solid white;
    /* Invisible border for transition */
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    border-color: rgba(0, 0, 0, 0.03);
}

.product-image {
    height: 250px;
    /* Increased height slightly */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 0;
    /* Remove padding to fill frame */
    background-color: transparent;
    border-radius: var(--radius-sm);
    transition: transform 0.4s ease;
    overflow: hidden;
    /* Ensure no spill */
}

.product-card:hover .product-image {
    background-color: transparent;
    transform: scale(1.02);
    /* Subtle zoom */
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Keep contain to show full product, but with 0 padding it fails 'fill' if aspect ratio differs.
                           User said "preencher". If I use cover it cuts off. 
                           I will use contain but mixed with padding 0 it should be bigger. 
                           Actually, to "preencher" (fill), mix-blend-mode might help if bg is white. */
    object-fit: contain;
    mix-blend-mode: normal;
    /* Remove multiply if bg is transparent/white */
}

.product-info {
    text-align: left;
}

.product-title {
    font-size: 15px;
    font-family: var(--font-heading);
    color: var(--product-name-color, var(--text-color));
    font-weight: 600;
    margin-bottom: 10px;
    height: 44px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.4;
}

.old-price {
    font-size: 13px;
    color: var(--text-light);
    text-decoration: line-through;
    opacity: 0.7;
}

.new-price {
    font-size: 26px;
    font-family: var(--font-heading);
    color: var(--price-color, var(--secondary-color));
    font-weight: 800;
    margin: 5px 0;
    letter-spacing: -0.5px;
}

.installments {
    font-size: 12px;
    color: var(--success-color);
    font-weight: 600;
    margin-bottom: 20px;
}

/* Modern Buttons & Animations */
.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.product-actions>* {
    flex: 1;
    /* Force equal width */
}

.btn-buy,
.btn-details {
    display: block;
    width: 100%;
    padding: 12px 5px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-buy {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c00 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(233, 87, 28, 0.2);
}

/* Shine Effect for Buy Button */
.btn-buy::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    transition: none;
}

.btn-buy:hover::after {
    left: 140%;
    transition: all 0.6s ease-in-out;
}

.btn-buy:hover {
    background: linear-gradient(135deg, var(--success-color) 0%, #2ecc71 100%);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
    transform: translateY(-3px);
    color: white;
}

.btn-details {
    background-color: #f1f3f6;
    color: var(--text-light);
    border: 1px solid #e1e4e8;
}

.btn-details:hover {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Pulse Animation for Buy Button on Card Hover */
@keyframes btnPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

.product-card:hover .btn-buy {
    animation: btnPulse 1.5s infinite ease-in-out;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #000 100%);
    padding: 60px 0;
    margin-top: 80px;
    border-top: none;
    color: white;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    filter: blur(100px);
    opacity: 0.1;
    top: -100px;
    left: -100px;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.newsletter-icon {
    font-size: 50px;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.05);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.newsletter-text h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    text-transform: none;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 5px;
}

.newsletter-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex: 1;
    max-width: 600px;
}

.newsletter-form input {
    padding: 15px 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    outline: none;
    width: 100%;
    color: white;
    transition: all 0.3s;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 40px;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 14px;
    letter-spacing: 1px;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

/* Footer Adjustments */
footer {
    margin-top: 0;
    padding-top: 80px;
    padding-bottom: 40px;
    background-color: #111;
    color: #888;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    color: white;
    margin-bottom: 25px;
    font-size: 18px;
    text-transform: none;
    font-weight: 700;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    font-size: 14px;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-col a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
    font-size: 14px;
    color: #555;
}



/* Navigation */


/* Vertical Menu Styles - ADDED AGAIN */
/* Vertical Menu Styles - Modernized */
.vertical-menu-btn {
    width: 100%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 16px 24px;
    font-weight: 800;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    font-size: 15px;
    letter-spacing: 1px;
    font-family: var(--font-heading);
    box-shadow: 0 4px 15px rgba(233, 87, 28, 0.2);
    transition: all 0.3s ease;
}

.vertical-menu-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.vertical-menu {
    position: relative;
    width: 100%;
    background: #ffffff;
    z-index: 1000;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    display: block;
    box-shadow: var(--shadow-md);
    padding: 10px 0;
    border: 1px solid #f0f0f0;
    border-top: none;
}

.vertical-menu.hidden {
    display: none;
}

.vertical-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vertical-menu li {
    border-bottom: 1px solid #f8f9fa;
}

.vertical-menu li:last-child {
    border-bottom: none;
}

.vertical-menu a {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    gap: 12px;
    font-weight: 500;
}

.vertical-menu a:hover {
    background: #fff8f5;
    color: var(--primary-color);
    padding-left: 30px;
}

.vertical-menu .view-all {
    font-weight: 700;
    text-align: center;
    justify-content: center;
    background: #fff;
    color: var(--primary-color);
    border-top: 1px dashed #eee;
    margin-top: 5px;
}

/* Submenu Styles - Animated */
.vertical-menu li {
    position: relative;
    transition: background-color 0.2s;
}

.vertical-menu li:hover {
    background-color: #fff8f5;
    /* Highlight parent on hover with a light peach/white */
}

.submenu {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 100%;
    top: 0;
    width: 250px;
    background: #fff;
    box-shadow: 4px 0 15px rgba(0, 0, 0, 0.15);
    border: 1px solid #ddd;
    z-index: 1001;
    border-radius: 0 4px 4px 0;
    transform: translateX(10px);
    /* Start slightly offset */
    transition: all 0.2s ease-in-out;
}

.vertical-menu li:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.submenu li {
    border-bottom: 1px solid #eee;
}

.submenu a {
    color: #333;
    /* Dark text for submenu on white bg */
    padding: 10px 15px;
    font-size: 13px;
}

.submenu a:hover {
    background: #f8f9fa;
    color: var(--primary-color);
    padding-left: 20px;
}

/* Responsive adjustments for Nav/Hero */
@media (max-width: 768px) {
    .nav-hero-wrapper .row {
        flex-direction: column;
    }

    .col-md-3,
    .col-md-9 {
        width: 100% !important;
        /* Force full width on mobile if bootstrap fails */
    }

    .main-banner-area {
        height: 200px !important;
        /* Smaller banner on mobile */
        margin-top: 20px;
        margin-left: 0 !important;
        /* Reset margin on mobile */
    }

    .promo-strip {
        margin-left: 0 !important;
        /* Reset promo strip margin on mobile */
        flex-direction: column;
        align-items: flex-start;
    }

    /* Hide vertical menu content by default on mobile, show only button */
    .vertical-menu {
        display: none;
        /* JS will toggle this */
        position: static;
        /* Reset absolute on mobile to push content */
        width: 100%;
    }

    .vertical-menu.active {
        display: block;
    }
}

/* Custom Promo Strip */
.top-strip {
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 20px;
    background: #000000;
    /* Pretos */
    color: #fff;
    /* Branco */
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 14px;
    box-sizing: border-box;
    white-space: nowrap;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.strip-item i {
    font-size: 16px;
    color: var(--primary-color);
    /* Laranja */
}

.divider {
    opacity: .6;
    font-weight: 700;
}

/* Mobile */
@media (max-width: 768px) {
    .top-strip {
        justify-content: flex-start;
        overflow-x: auto;
    }
}

/* --- Cart Page Styles --- */
.cart-page {
    padding: 40px 0 80px;
    background-color: var(--bg-light);
    min-height: 80vh;
}

.cart-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
    background: transparent;
}

.cart-table th {
    background: transparent;
    padding: 10px 20px;
    text-align: left;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    border: none;
}

.cart-row {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s;
    border: none;
}

.cart-row:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cart-table td {
    padding: 15px 20px;
    vertical-align: middle;
    border: none;
}

.cart-table td:first-child {
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.cart-table td:last-child {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-product-img-wrapper {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    background: #fff;
    padding: 8px;
    border-radius: var(--radius-sm);
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cart-product-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
}

.cart-product-info h3 {
    margin: 0 0 4px;
    font-size: 15px;
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.3;
}

.cart-product-info small {
    color: #aaa;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.qty-control {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 50px;
    padding: 4px;
    border: 1px solid #eee;
    width: fit-content;
}

.qty-input {
    width: 45px;
    background: transparent;
    border: none;
    text-align: center;
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 14px;
    outline: none;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-summary {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 120px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.summary-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.summary-total {
    border-top: 1px dashed #ddd;
    padding-top: 15px;
    margin-top: 15px;
    font-size: 22px;
    font-weight: 900;
    color: var(--primary-color);
}

.btn-checkout {
    width: 100%;
    padding: 16px;
    font-size: 15px;
    border-radius: var(--radius-pill);
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-continue {
    background: #fff;
    border: 1px solid #eee;
    color: var(--text-light);
    margin-top: 15px;
    width: 100%;
    text-align: center;
    padding: 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    display: inline-block;
}

.btn-continue:hover {
    background: var(--bg-light);
    color: var(--secondary-color);
    box-shadow: var(--shadow-sm);
}

/* --- Checkout Page Styles --- */
.checkout-page {
    padding: 40px 0 80px;
    background-color: var(--bg-light);
    min-height: 80vh;
}

.checkout-section-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-section-title i {
    color: var(--primary-color);
}

.checkout-card {
    background: white;
    border-radius: var(--radius-md);
    border: none;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    transition: transform 0.2s;
    overflow: hidden;
}

.checkout-card:hover {
    box-shadow: var(--shadow-md);
}

.checkout-card .card-header {
    background: transparent;
    border-bottom: 1px solid #f0f0f0;
    padding: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.checkout-card .card-body {
    padding: 25px;
}

.address-display {
    border: 1px dashed #eee;
    padding: 20px;
    border-radius: var(--radius-sm);
    background: #fafafa;
}

.address-display h5 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.address-display p {
    margin-bottom: 3px;
    font-size: 14px;
    color: var(--text-light);
}

.shipping-option {
    border: 1px solid #eee;
    border-radius: var(--radius-sm);
    padding: 15px 20px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.3s;
    display: block;
    position: relative;
}

.shipping-option:hover {
    border-color: var(--primary-color);
    background: #fffcf9;
}

.shipping-option input:checked+label {
    border-color: var(--primary-color);
    background: #fffcf9;
}

.shipping-option .form-check-label {
    width: 100%;
    cursor: pointer;
}

.payment-accordion .accordion-item {
    border-radius: var(--radius-sm) !important;
    border: 1px solid #eee !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.payment-accordion .accordion-button {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 15px;
    padding: 18px 20px;
    box-shadow: none;
    border: none;
}

.payment-accordion .accordion-button:not(.collapsed) {
    background: #fffcf9;
    color: var(--primary-color);
    border-bottom: 1px solid #eee;
}

.payment-accordion .accordion-button::after {
    background-size: 12px;
}

.checkout-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f9f9f9;
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-item-img {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    border: 1px solid #eee;
    padding: 5px;
    object-fit: contain;
}

.checkout-item-info h4 {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    color: var(--secondary-color);
}

.checkout-item-info small {
    color: #999;
    font-size: 11px;
}

.checkout-summary {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 30px;
    position: sticky;
    top: 120px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-light);
}

.checkout-summary-total {
    border-top: 1px dashed #ddd;
    padding-top: 20px;
    margin-top: 20px;
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-color);
}

/* --- FEATURED OFFERS SECTION --- */
.featured-offers-section {
    background: #fdfdfd;
}

.section-header-modern {
    position: relative;
    padding-bottom: 10px;
}

.section-header-modern h2 {
    font-size: 28px;
    color: var(--secondary-color);
    margin: 0;
}

.section-header-modern .header-line {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin-top: 8px;
    border-radius: 50px;
}

.featured-offer-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.featured-offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.offer-badge-modern {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 900;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(233, 87, 28, 0.3);
}

.offer-content {
    padding: 30px;
}

.offer-image-container {
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.offer-image-container img {
    max-height: 180px;
    object-fit: contain;
    transition: transform 0.5s;
}

.featured-offer-card:hover .offer-image-container img {
    transform: scale(1.1);
}

.offer-text {
    padding-left: 10px;
}

.offer-title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.offer-subtitle {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.offer-price {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 5px;
}

.offer-installments {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 700;
}

.offer-installments span {
    color: #28a745;
    text-transform: uppercase;
}

.btn-offer {
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 900;
    padding: 10px 20px;
    transition: all 0.3s;
    border: none;
}

.btn-offer:hover {
    background: var(--primary-color);
    color: #fff;
    padding-left: 25px;
    box-shadow: 0 5px 15px rgba(233, 87, 28, 0.3);
}

@media (max-width: 768px) {
    .offer-text {
        padding-top: 15px;
        padding-left: 0;
        text-align: center;
    }

    .section-header-modern {
        text-align: center;
    }

    .section-header-modern .header-line {
        margin: 8px auto 0;
    }
}