
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-color: #3C6584;
  --bg-color: #ffffff;
  --text-color: #1a1a1a;
  --header-height: 70px;
  --nav-height: 50px;
  --container-padding: 5%;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}

/* Header & Navigation */
header {
    background-color: var(--primary-color);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--container-padding);
    height: var(--header-height);
}

.logo h1 {
    font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0;
    cursor: pointer;
    line-height: 14px;
    color: white;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.logo h1 span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.search-container {
    width: 788px;
    flex: 0 0 788px;
    position: relative;
    display: flex;
    align-items: center;
}

.search-container i {
    position: absolute;
    left: 15px;
    color: #fff;
    opacity: 0.8;
}

.search-container input {
    width: 100%;
    height: 35px;
    padding: 0 20px 0 45px;
    border: none;
    border-radius: 30px;
    background-color: rgba(217, 217, 217, 0.2);
    color: white;
    outline: none;
    font-size: 0.9rem;
}

.search-container input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-actions a {
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ff4d4d;
    color: white;
    border-radius: 50%;
    padding: 2px 4px;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid white;
    pointer-events: none;
}

.user-initials {
    width: 35px;
    height: 35px;
    border: 1.5px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

nav {
    background: white;
    border-bottom: 1px solid #eee;
}

.nav-links {
    display: flex;
    justify-content: flex-start;
    gap: 85px;
    list-style: none;
    height: var(--nav-height);
    align-items: center;
    padding: 0 var(--container-padding);
}

.nav-links > li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links > li > a {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0;
}

.nav-links > li:hover > a {
    color: var(--primary-color);
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: none;
    padding: 20px;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    z-index: 100;
}

.nav-links > li:hover .mega-menu {
    display: grid;
}

.mega-menu ul {
    list-style: none;
}

.mega-menu ul li {
    margin-bottom: 12px;
}

.mega-menu ul li a {
    text-decoration: none;
    color: #444;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.mega-menu ul li a:hover {
    color: var(--primary-color);
    font-weight: 600;
}

/* Main Layout Sections */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px var(--container-padding) 20px;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600; /* Semi Bold */
    text-transform: uppercase;
    letter-spacing: 0;
    margin: 0;
    color: #000000;
}

.see-all {
    text-decoration: none;
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
    font-weight: 500; /* Medium */
    font-size: 16px;
}

/* Categories Scroll */
.categories-row {
    display: flex;
    justify-content: space-between;
    padding: 0 var(--container-padding);
    margin-bottom: 40px;
}

.categories-row::-webkit-scrollbar {
    display: none;
}

.category-tile {
    flex: 0 0 201px;
    width: 201px;
    height: 251px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.category-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s;
}

.category-tile:hover img {
    transform: scale(1.05);
}

.category-tile span {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    padding: 0 var(--container-padding);
    margin-bottom: 40px;
}

.product-card {
    position: relative;
    cursor: pointer;
}

.product-img-wrapper {
    position: relative;
    aspect-ratio: 3/4;
    background: #f5f5f5;
    margin-bottom: 10px;
    overflow: hidden;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishlist-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    color: #000;
    cursor: pointer;
    z-index: 5;
}

.product-card .info {
    text-align: left;
}

.product-card .name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card .brand {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.product-card .price {
    font-weight: 700;
    font-size: 0.95rem;
}

/* Brands Row */
.brands-row {
    display: flex;
    justify-content: space-between;
    padding: 0 var(--container-padding);
    margin-bottom: 60px;
}

/* Dynamic Promotion Badge */
.sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff3e3e;
    color: white;
    padding: 3px 8px;
    font-size: 0.75rem;
    font-weight: 800;
    z-index: 5;
}

footer {
    padding: 40px var(--container-padding);
    background: #fff;
    border-top: 1px solid #eee;
}

.footer-bottom {
    text-align: center;
    color: #999;
    font-size: 0.8rem;
    margin-top: 20px;
}

/* Category Breakdown Layout */
.breakdown-container {
    display: flex;
    padding: 40px var(--container-padding);
    gap: 40px;
}

.sidebar {
    flex: 0 0 220px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #000;
}

.filter-group {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.filter-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 15px;
}

.filter-group-content {
    display: none;
    flex-direction: column;
    gap: 12px;
}

.filter-group.active .filter-group-content {
    display: flex;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.filter-item input {
    width: 18px;
    height: 18px;
    border: 1.5px solid #000;
    cursor: pointer;
}

.main-content {
    flex: 1;
}

.breakdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 40px;
    z-index: 100;
    width: 100%;
}

.breakdown-header h1 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #000;
    text-align: left;
}

/* Page Titles Uniformity */
.checkout-title, .wishlist-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
    text-align: left;
}

/* Container Uniformity */
.checkout-container, .wishlist-page-container {
    display: flex;
    flex-direction: column;
    padding: 40px var(--container-padding);
    background-color: #f5f5f5;
    min-height: calc(100vh - var(--header-height) - var(--nav-height));
}

.checkout-container {
    flex-direction: row;
    gap: 60px;
}

/* Live Search Results Dropdown */
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 10px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 5000;
    display: none;
    border: 1px solid #eee;
}

/* Custom Scrollbar for Search */
.search-results-dropdown::-webkit-scrollbar {
    width: 6px;
}
.search-results-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.search-results-dropdown::-webkit-scrollbar-thumb {
    background: #cbd6df;
    border-radius: 10px;
}
.search-results-dropdown::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.search-result-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #f5f5f5;
    cursor: pointer;
    transition: background 0.2s;
    align-items: center;
}

.search-result-item:hover {
    background: #f8fbfc;
}

.search-result-item img {
    width: 50px;
    height: 65px;
    object-fit: cover;
    border-radius: 4px;
    background: #eee;
}

.search-result-info {
    flex: 1;
}

.search-result-name {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 2px;
}

.search-result-brand {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
}

.search-result-price {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-color);
    margin-top: 4px;
}

.search-no-results {
    padding: 30px;
    text-align: center;
    color: #888;
    font-size: 14px;
}

.search-see-more {
    padding: 15px;
    text-align: center;
    background: #fdfdfd;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    border-top: 1px solid #eee;
}

.search-see-more:hover {
    background: #f5f5f5;
    text-decoration: underline;
}

/* Account Page Layout */
.account-bg {
    background-color: #f8fbfc;
    min-height: calc(100vh - 120px);
    padding: 60px var(--container-padding);
}

.account-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.account-sidebar {
    flex: 0 0 320px;
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.account-main-content {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    min-height: 500px;
}

.account-sidebar-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-left: 10px;
}

.account-nav {
    display: flex;
    flex-direction: column;
}

.account-nav-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 10px;
    border-top: 1px solid #eee;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.account-nav-item:hover {
    background-color: #f9f9f9;
}

.account-nav-item.active {
    font-weight: 700;
}

.account-nav-item i {
    font-size: 14px;
    color: #333;
}

.account-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.account-content-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.account-content-header .btn-edit {
    cursor: pointer;
    font-size: 18px;
    color: #333;
}

.account-detail-group {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.account-detail-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.account-detail-value {
    font-size: 15px;
    color: #555;
}

/* Change Password Form */
.change-password-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.btn-back {
    cursor: pointer;
    font-size: 20px;
    color: #333;
}

.change-password-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.password-form {
    max-width: 100%;
}

.password-field {
    margin-bottom: 25px;
}

.password-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.password-field input {
    width: 100%;
    height: 45px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-size: 15px;
}

.password-field input:focus {
    border-color: var(--primary-color);
}

.password-field input:disabled {
    background-color: #f5f5f5;
    color: #888;
}

.btn-update-password {
    width: 100%;
    height: 45px;
    background-color: #a4b4c4; /* Matching the muted blue in design */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-update-password:hover {
    background-color: var(--primary-color);
}

/* Success Modal */
.success-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.success-modal-content {
    background: #fff;
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin: 0 auto 25px;
}

.success-text {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.4;
}

.btn-modal-back {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.btn-modal-back:hover {
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .account-container {
        flex-direction: column;
    }
    .account-sidebar {
        flex: 1;
        width: 100%;
    }
}


.btn-sort {
    background: #E2E0C9;
    border: none;
    width: 156px;
    height: 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sort-menu {
    position: absolute;
    top: 110%;
    right: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 12px;
    width: 220px;
    display: none;
    z-index: 5000;
    padding: 15px 0;
}

.sort-menu.active {
    display: block;
}

.sort-option {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
}

.sort-option .radio {
    width: 18px;
    height: 18px;
    border: 2px solid #000;
    border-radius: 50%;
    position: relative;
}

.sort-option.active .radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
}

.breakdown-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

/* Nav Item Hover Line */
.nav-links > li > a {
    position: relative;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #3C6584;
    transition: width 0.3s ease;
}

.nav-links > li:hover > a::after {
    width: 100%;
}

/* Live Search Results Dropdown */
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    border-radius: 0 0 12px 12px;
}

.search-result-item {
    display: flex;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    align-items: center;
    gap: 15px;
    color: #333;
}

.search-result-item:hover {
    background: #f9f9f9;
}

.search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.search-result-info {
    flex: 1;
    text-align: left;
}

.search-result-name {
    font-size: 14px;
    font-weight: 600;
}

.search-result-brand {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
}

.search-result-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
}

.search-no-results {
    padding: 20px;
    text-align: center;
    color: #888;
    font-size: 14px;
}

/* Checkout & Cart Layout */
.checkout-container {
    display: flex;
    padding: 40px var(--container-padding);
    gap: 60px;
    background-color: #f5f5f5;
    min-height: calc(100vh - var(--header-height) - var(--nav-height));
}

.checkout-main {
    flex: 1;
}

.checkout-sidebar {
    flex: 0 0 380px;
}

.checkout-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000;
}

.checkout-section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

/* Summary Box */
.summary-box {
    background: white;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.summary-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 15px;
}

.summary-row.total {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-weight: 700;
    font-size: 18px;
}

.btn-proceed-checkout {
    width: 100%;
    height: 50px;
    background: #3C6584;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    margin-top: 20px;
    transition: opacity 0.3s;
}

.btn-proceed-checkout:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #aab8c2;
}

/* Address Form */
.address-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    background: transparent;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-field input {
    height: 45px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    font-size: 14px;
}

.btn-save-address {
    width: 100%;
    height: 50px;
    background: #3C6584;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    margin-top: 30px;
}

/* Cart Items Desktop */
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item-row {
    display: flex;
    background: white;
    padding: 20px;
    border-radius: 4px;
    gap: 20px;
    align-items: center;
}

.cart-item-row img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.cart-item-info .brand {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cart-item-info .variant {
    font-size: 14px;
    color: #555;
}

.cart-item-pricing {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.cart-item-pricing .price {
    font-weight: 700;
    font-size: 18px;
}

.cart-qty-select {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
}

.remove-cart-item {
    color: #ff4d4d;
    cursor: pointer;
    font-size: 18px;
}

/* Redirect Modal */
.redirect-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.redirect-modal {
    background: white;
    width: 500px;
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

.shield-icon {
    width: 80px;
    height: 80px;
    border: 2px solid #3C6584;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: #3C6584;
    font-size: 40px;
}

.redirect-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.redirect-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}

.btn-modal-payfast {
    width: 100%;
    height: 50px;
    background: #3C6584;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-modal-payfast:hover {
    opacity: 0.9;
}

/* Sold Out Global Overlay */
.sold-out-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    color: #fff;
    pointer-events: none;
    border-radius: inherit;
}

.sold-out-overlay i {
    font-size: 28px;
    margin-bottom: 6px;
    opacity: 0.9;
}

.sold-out-overlay span {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modal Overlay Base */

/* Hero Slider */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    background: #f0f4f7;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    cursor: pointer;
}

.hero-slider .slide.active {
    opacity: 1;
    z-index: 1;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Brands Row */
.brands-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 60px;
}

.brand-box {
    flex: 1;
    min-width: 120px;
    height: 60px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    border-radius: 0;
    cursor: pointer;
    transition: opacity 0.3s;
    text-decoration: none;
}

.brand-box:hover {
    opacity: 0.8;
}

