/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --secondary-color: #f88108;
    --accent-color: #f88108;
    --success-color: #27ae60;
    --text-color: #333;
    --text-light: #666;
    --border-color: #ddd;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-message {
    font-weight: 600;
}

.top-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
    transition: opacity 0.3s;
}

.top-links a:hover {
    opacity: 0.8;
}

.header-main {
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 700;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

.header-search {
    flex: 1;
    min-width: 300px;
}

.header-search form {
    display: flex;
    gap: 0;
}

.header-search input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid var(--border-color);
    border-right: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
}

.header-search button {
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.header-search button:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wishlist-link, .cart-link {
    position: relative;
    color: var(--text-color);
    font-size: 20px;
    text-decoration: none;
    padding: 8px;
}

.badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-link {
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.login-link {
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.login-link:hover {
    background: var(--secondary-color);
}

.logout-link {
    padding: 5px 15px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s;
}

.logout-link:hover {
    background: #c0392b;
}

/* Navigation */
.main-nav {
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 15px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.nav-menu > li > a:hover {
    background: var(--white);
}

.has-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-hover);
    list-style: none;
    z-index: 100;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: background 0.3s;
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #000;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(248, 129, 8, 0.3) 100%);
    z-index: 1;
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

/* Slider Controls */
.hero-slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: scale(1.1);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

/* Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

.hero-banner-title {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
}

.hero-banner-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
    color: white;
}

.btn-white {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.btn-white:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Feature Boxes */
.feature-boxes {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.feature-boxes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
}

.feature-box-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
}

.feature-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.feature-box p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    text-align: center;
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-primary {
    background: #f88108;
    border: none;
    color: white;
}

.btn-primary:hover {
    background: #e67307;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(248, 129, 8, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid #f88108;
    color: #f88108;
}

.btn-outline:hover {
    background: #f88108;
    color: var(--white);
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn.in-cart {
    background: var(--success-color);
}

/* Sections */
.section-title {
    font-size: 36px;
    margin-bottom: 10px;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
}

.categories-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.category-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.product-count {
    color: var(--text-light);
    margin-bottom: 15px;
}

/* Products Grid */
.products-section {
    padding: 80px 0;
}

.products-section.bg-light {
    background: var(--bg-light);
}


.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 500;
}

.section-title {
    font-size: 42px;
    margin-bottom: 10px;
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 0;
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 28px;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Loading Skeleton Animation */
.products-grid.loading .product-card-wrapper {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 12px;
    height: 400px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.text-center {
    text-align: center;
}

/* Product Card Wrapper for Animation */
.product-card-wrapper {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(248, 129, 8, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid rgba(248, 129, 8, 0.2);
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, rgba(248, 129, 8, 0.15), rgba(248, 129, 8, 0.25)) border-box;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 35px rgba(248, 129, 8, 0.4);
    border-color: rgba(248, 129, 8, 0.6);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    animation: badge-float 3s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.product-badge.hot {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: var(--white);
}

.product-badge.discount {
    background: linear-gradient(135deg, #51cf66 0%, #40c057 100%);
    color: var(--white);
    left: auto;
    right: 12px;
}

.product-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.product-card:hover .product-image {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
}

.product-image img {
    width: 300px;
    height: 300px;
    object-fit: contain ! IMPORTANT;
    transition: transform 0.3s;
    padding-top: 10px;
}

/* SVG Support for Product Cards */
.product-image img[src$=".svg"] {
    object-fit: contain;
    background: var(--bg-light);
    padding: 15px;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

/* Prevent excessive SVG scaling on hover */
.product-card:hover .product-image img[src$=".svg"] {
    transform: scale(1.05);
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-actions a:nth-child(1) {
    transition-delay: 0.05s;
}

.product-actions a:nth-child(2) {
    transition-delay: 0.1s;
}

.product-actions a:nth-child(3) {
    transition-delay: 0.15s;
}

.product-actions a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: background 0.3s;
}

.product-actions a:hover {
    background: #f88108;
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(248, 129, 8, 0.4);
}

.product-actions a.active {
    background: var(--accent-color);
    color: var(--white);
}

.product-info {
    padding: 25px;
    background: white;
    transition: all 0.3s;
    position: relative;
}

.product-card:hover .product-info {
    background: linear-gradient(to bottom, white 0%, #fafbfc 100%);
    padding-bottom: 30px;
}

.product-category {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #f88108;
}

.product-name {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.4;
    color: #000000;
}

.product-name a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}

.product-name a:hover {
    color: #f88108;
}

.product-brand {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.product-brand a {
    color: var(--secondary-color);
    text-decoration: none;
}

.product-sku {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.product-price {
    margin-bottom: 10px;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-light);
    margin-right: 10px;
}

.price-current {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
}

.price-login {
    color: var(--text-light);
    font-style: italic;
}

.product-stock {
    margin-bottom: 15px;
}

.stock-in {
    color: var(--success-color);
    font-weight: 500;
}

.stock-out {
    color: var(--accent-color);
    font-weight: 500;
}

.quantity-input {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 10px;
}

.qty-btn {
    width: 35px;
    height: 35px;
    border: 1px solid var(--border-color);
    background: var(--white);
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s;
}

.qty-btn:hover {
    background: var(--bg-light);
}

.qty-btn.minus {
    border-radius: 4px 0 0 4px;
}

.qty-btn.plus {
    border-radius: 0 4px 4px 0;
}

.quantity-input input {
    width: 60px;
    height: 35px;
    border: 1px solid var(--border-color);
    border-left: none;
    border-right: none;
    text-align: center;
    font-size: 16px;
}

.add-to-cart-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Auth Pages */
.auth-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.auth-box {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-width: 500px;
    width: 100%;
}

.auth-box h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--primary-color);
    text-align: center;
}

.auth-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

.auth-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    color: var(--text-light);
}

.auth-footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Alerts */
.alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.alert-error {
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.alert-success {
    background: #efe;
    color: #3c3;
    border: 1px solid #cfc;
}

/* Cart Page */
.cart-page {
    padding: 40px 0;
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cart-table thead {
    background: var(--bg-light);
}

.cart-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
}

.cart-table td {
    padding: 20px 15px;
    border-bottom: 1px solid var(--border-color);
}

.product-info {
    display: block;
    align-items: center;
    gap: 15px;
}

.product-image-small {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
}

.product-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.btn-remove {
    background: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-remove:hover {
    background: #c0392b;
}

.cart-summary {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.summary-box {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.summary-box h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-row.total {
    font-size: 20px;
    font-weight: bold;
    border-bottom: none;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.empty-cart,
.empty-wishlist {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart i,
.empty-wishlist i {
    font-size: 80px;
    color: var(--border-color);
    margin-bottom: 20px;
}

.empty-cart h2,
.empty-wishlist h2 {
    margin-bottom: 10px;
    color: var(--text-color);
}

/* Products Page Banner */
.products-banner {
    position: relative;
    background: linear-gradient(135deg, #f88108 0%, #e67307 100%);
    color: white;
    padding: 80px 0;
    margin-bottom: 40px;
    overflow: hidden;
}

.products-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0v46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72c05,54,35.85,90.8,119,85.49,75.85-4.95,191.13-31.93,269-45.55C962.43,97.71,1108.16,94,1200,94V0Z" opacity=".1" fill="white"/></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.products-banner-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    opacity: 0.9;
}

.breadcrumb-nav a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb-nav a:hover {
    opacity: 0.7;
}

.breadcrumb-nav i {
    font-size: 10px;
    opacity: 0.7;
}

.breadcrumb-nav span {
    color: rgba(255, 255, 255, 0.9);
}

.products-banner-title {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: slideInDown 0.8s ease-out;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.products-banner-subtitle {
    font-size: 20px;
    opacity: 0.9;
    max-width: 700px;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

/* Category Slider Section */
.category-slider-section {
    padding: 50px 0;
    background: var(--bg-light);
    margin-bottom: 40px;
}

.slider-section-title {
    font-size: 28px;
    margin-bottom: 30px;
    color: #f88108;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.category-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.category-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 0;
}

.category-slide-item {
    flex: 0 0 200px;
    background: white;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.category-slide-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(248, 129, 8, 0.3);
    color: #f88108;
    border: 2px solid rgba(248, 129, 8, 0.3);
}

.category-slide-icon {
    width: 60px;
    height: 60px;
    background: #f88108;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: transform 0.3s;
    box-shadow: 0 4px 15px rgba(248, 129, 8, 0.4);
}

.category-slide-item:hover .category-slide-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-slide-item h3 {
    font-size: 16px;
    margin: 0;
    font-weight: 600;
    color: #f88108;
}

.category-slide-item p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.slider-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: 2px solid #f88108;
    color: #f88108;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(248, 129, 8, 0.2);
}

.slider-nav-btn:hover {
    background: #f88108;
    color: white;
    border-color: #f88108;
    transform: scale(1.1);
}

.slider-nav-btn:active {
    transform: scale(0.95);
}

/* Products Page */
.products-page {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 35px;
    padding: 40px 0;
    position: relative;
}

/* Mobile Filter Toggle */
.mobile-filter-toggle {
    display: none;
    margin-bottom: 20px;
}

/* Products Sidebar */
.products-sidebar {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: fit-content;
    position: sticky;
    top: 100px;
    overflow: hidden;
    border: 1px solid rgba(44, 62, 80, 0.1);
}

.sidebar-header {
    background: #f88108;
    color: white;
    padding: 24px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.sidebar-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.sidebar-header h3 {
    margin: 0;
    font-size: 18px;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.sidebar-header h3 i {
    font-size: 20px;
    opacity: 0.9;
}

.close-sidebar {
    display: none;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.close-sidebar:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.filter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 25px 20px;
}

.filter-group {
    position: relative;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group label i {
    color: #f88108;
    font-size: 16px;
}

.filter-input,
.filter-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    color: var(--text-color);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.filter-select {
    cursor: pointer;
}

.filter-input:focus,
.filter-select:focus {
    outline: none;
    border-color: #f88108;
    box-shadow: 0 0 0 4px rgba(248, 129, 8, 0.1);
    transform: translateY(-2px);
}

.filter-input::placeholder {
    color: #999;
}

.filter-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.products-header {
    margin-bottom: 35px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    padding: 25px 30px;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(248, 129, 8, 0.15);
    border: 2px solid rgba(248, 129, 8, 0.2);
}

.products-header-left h1 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #f88108;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    animation: slideInLeft 0.6s ease-out;
    letter-spacing: -0.5px;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.products-header-left h1 i {
    color: #f88108;
    font-size: 28px;
}

.products-count {
    color: var(--text-light);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.count-badge {
    background: #f88108;
    color: white;
    padding: 6px 14px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(248, 129, 8, 0.5);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(248, 129, 8, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(248, 129, 8, 0.7);
    }
}

.filter-indicator {
    color: var(--secondary-color);
    font-weight: 500;
}

.products-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.view-options {
    display: flex;
    gap: 8px;
    background: white;
    padding: 6px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.view-btn {
    background: transparent;
    border: none;
    padding: 10px 14px;
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
    position: relative;
}

.view-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    background: var(--white);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.view-btn:hover::before {
    opacity: 1;
    transform: scale(1);
}

.view-btn:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.view-btn.active {
    color: var(--primary-color);
}

.view-btn.active::before {
    opacity: 1;
    transform: scale(1);
    box-shadow: var(--shadow);
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

/* Product Detail Page */
.product-detail-page {
    padding: 40px 0;
}

.breadcrumb {
    margin-bottom: 20px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--secondary-color);
    text-decoration: none;
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.main-image {
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* SVG Support for Product Detail */
.main-image img[src$=".svg"] {
    object-fit: contain;
    background: var(--bg-light);
    padding: 20px;
    max-height: 500px;
    width: auto;
    margin: 0 auto;
    display: block;
}

.product-info-detail h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.product-meta {
    margin-bottom: 20px;
    color: var(--text-light);
}

.product-price-detail {
    font-size: 32px;
    margin-bottom: 20px;
}

.product-actions-detail {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-wishlist-toggle {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-wishlist-toggle:hover,
.btn-wishlist-toggle.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
}

.product-description {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.product-description h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

/* Pagination */
.no-products {
    text-align: center;
    padding: 80px 20px;
    background: var(--bg-light);
    border-radius: 12px;
    margin: 40px 0;
}

.no-products-icon {
    font-size: 64px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.no-products h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.no-products p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.pagination-wrapper {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--bg-light);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.page-numbers {
    display: flex;
    gap: 5px;
    align-items: center;
}

.page-link {
    padding: 10px 16px;
    background: var(--white);
    color: var(--text-color);
    text-decoration: none;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 44px;
    justify-content: center;
}

.page-link:hover {
    background: #f88108;
    color: var(--white);
    border-color: #f88108;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.page-link.active {
    background: #f88108;
    color: var(--white);
    border-color: #f88108;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(248, 129, 8, 0.5);
    transform: scale(1.05);
}

.page-link.active::before {
    display: none;
}

.page-dots {
    padding: 10px 5px;
    color: var(--text-light);
    font-weight: bold;
}

.pagination-info {
    text-align: center;
    margin-top: 15px;
    color: var(--text-light);
    font-size: 14px;
}

/* Products Grid List View */
.products-grid.list-view {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.products-grid.list-view .product-card {
    display: flex;
    flex-direction: row;
    max-width: 100%;
}

.products-grid.list-view .product-image {
    width: 250px;
    height: 250px;
    flex-shrink: 0;
}

.products-grid.list-view .product-info {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Info Sections */
.info-sections {
    padding: 60px 0;
    background: var(--bg-light);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}


/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: var(--bg-light);
    text-align: center;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-title {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mission-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 40px;
}

/* Collections Section */
.collections-section {
    padding: 80px 0;
    background: var(--white);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.collection-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.collection-image {
    height: 250px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-placeholder {
    font-size: 64px;
    color: var(--text-light);
}

.collection-info {
    padding: 30px;
    text-align: center;
}

.collection-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.collection-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.collection-link:hover {
    color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background: var(--primary-color);
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
}

.newsletter-content p {
    font-size: 16px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
    outline: none;
}

.newsletter-form button {
    padding: 15px 30px;
    border-radius: 0 4px 4px 0;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    background: var(--secondary-color);
    border: none;
    color: white;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: #2980b9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-hero-title {
        font-size: 36px;
    }
    
    .page-hero-subtitle {
        font-size: 18px;
    }
    
    .stats-grid,
    .features-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .brands-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-brands-grid,
    .brands-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .faq-categories {
        flex-direction: column;
        align-items: stretch;
    }
    
    .faq-category-btn {
        width: 100%;
        text-align: center;
    }
    
    .faq-category-title {
        font-size: 24px;
    }
    
    .cta-content h2,
    .faq-cta-content h2 {
        font-size: 32px;
    }
    
    .image-text-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .image-text-wrapper.reversed {
        direction: ltr;
    }
    
    .image-3d {
        height: 350px;
    }
    
    .image-text-content {
        padding: 20px;
    }
    
    .image-text-content h2 {
        font-size: 32px;
    }
    
    .brands-stats-inline {
        grid-template-columns: 1fr;
    }
    
    .help-options {
        flex-direction: column;
    }
    
    .help-option-card {
        width: 100%;
    }
    
    .hero-slider {
        height: 500px;
    }
    
    .hero-slide {
        background-attachment: scroll;
    }
    
    .hero-banner-title {
        font-size: 32px;
    }
    
    .hero-banner-subtitle {
        font-size: 16px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .hero-slider-controls {
        padding: 0 10px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input[type="email"] {
        width: 100%;
        border-radius: 4px;
    }
    
    .newsletter-form button {
        width: 100%;
        border-radius: 4px;
    }
    
    .newsletter-content h2 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .mission-title {
        font-size: 28px;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-boxes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .products-section {
        padding: 50px 0;
    }
}

/* Footer */
.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.newsletter-form {
    display: flex;
    gap: 0;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    padding: 10px 20px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* Page Content */
.page-content {
    padding: 40px 0;
}

.content-section {
    max-width: 800px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.content-section h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.content-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.content-section li {
    margin-bottom: 10px;
}

/* Contact Page */
.contact-page {
    padding: 40px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.contact-info h2 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 24px;
    color: var(--secondary-color);
    margin-top: 5px;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-form-container h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
}

/* Page Hero Banner (Shared) */
.page-hero-banner {
    position: relative;
    background: linear-gradient(135deg, #f88108 0%, #e67307 100%);
    color: white;
    padding: 100px 0;
    margin-bottom: 0;
    overflow: hidden;
}

.page-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,0v46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72c05,54,35.85,90.8,119,85.49,75.85-4.95,191.13-31.93,269-45.55C962.43,97.71,1108.16,94,1200,94V0Z" opacity=".1" fill="white"/></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-hero-title {
    font-size: 56px;
    margin-bottom: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: slideInDown 0.8s ease-out;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.page-hero-subtitle {
    font-size: 22px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(248, 129, 8, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(248, 129, 8, 0.25);
    border-color: rgba(248, 129, 8, 0.3);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f88108 0%, #e67307 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(248, 129, 8, 0.4);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #f88108;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 100px 0;
    background: var(--white);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.mission-card,
.vision-card {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(248, 129, 8, 0.1);
    transition: all 0.4s;
    border: 2px solid rgba(248, 129, 8, 0.1);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(248, 129, 8, 0.2);
}

.mission-icon,
.vision-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f88108 0%, #e67307 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 40px;
    box-shadow: 0 4px 20px rgba(248, 129, 8, 0.4);
}

.mission-card h2,
.vision-card h2 {
    font-size: 32px;
    color: #f88108;
    margin-bottom: 20px;
    font-weight: 700;
}

.mission-card p,
.vision-card p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-box {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(248, 129, 8, 0.2);
    border-color: rgba(248, 129, 8, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f88108 0%, #e67307 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(248, 129, 8, 0.3);
}

.feature-box h3 {
    font-size: 22px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-box p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s;
    border: 2px solid rgba(248, 129, 8, 0.1);
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(248, 129, 8, 0.1), transparent);
    transition: left 0.5s;
}

.value-item:hover::before {
    left: 100%;
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(248, 129, 8, 0.2);
    border-color: rgba(248, 129, 8, 0.3);
}

.value-number {
    font-size: 72px;
    font-weight: 900;
    color: rgba(248, 129, 8, 0.2);
    line-height: 1;
    margin-bottom: 15px;
}

.value-item h3 {
    font-size: 24px;
    color: #f88108;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f88108 0%, #e67307 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Image & Text Sections (3D Style) */
.image-text-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.image-text-section:nth-child(even) {
    background: var(--bg-light);
}

.image-text-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-text-wrapper.reversed {
    direction: rtl;
}

.image-text-wrapper.reversed > * {
    direction: ltr;
}

.image-text-image {
    position: relative;
    perspective: 1000px;
}

.image-3d-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.image-text-section:hover .image-3d-container {
    transform: rotateY(-5deg) rotateX(5deg) translateZ(20px);
}

.image-3d {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-text-section:hover .image-3d {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 129, 8, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.image-text-content {
    padding: 40px;
}

.content-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f88108 0%, #e67307 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(248, 129, 8, 0.4);
}

.content-badge i {
    font-size: 16px;
}

.image-text-content h2 {
    font-size: 42px;
    color: #000;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
}

.image-text-content > p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.content-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.content-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(248, 129, 8, 0.05);
    border-radius: 10px;
    border-left: 4px solid #f88108;
    transition: all 0.3s;
}

.content-feature-item:hover {
    background: rgba(248, 129, 8, 0.1);
    transform: translateX(5px);
}

.content-feature-item i {
    color: #f88108;
    font-size: 18px;
}

.content-feature-item span {
    font-weight: 600;
    color: #000;
    font-size: 16px;
}

/* Advanced Features List */
.features-list-advanced {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.feature-item-advanced {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.feature-item-advanced:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 8px 25px rgba(248, 129, 8, 0.2);
    border-color: rgba(248, 129, 8, 0.3);
}

.feature-icon-advanced {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f88108 0%, #e67307 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(248, 129, 8, 0.3);
}

.feature-content-advanced h4 {
    font-size: 20px;
    color: #000;
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-content-advanced p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Advanced Values List */
.values-list-advanced {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.value-item-advanced {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(248, 129, 8, 0.1);
    transition: all 0.4s;
    border: 2px solid rgba(248, 129, 8, 0.1);
}

.value-item-advanced:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 8px 25px rgba(248, 129, 8, 0.25);
    border-color: rgba(248, 129, 8, 0.3);
}

.value-number-advanced {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f88108 0%, #e67307 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(248, 129, 8, 0.3);
}

.value-content-advanced h4 {
    font-size: 22px;
    color: #f88108;
    margin-bottom: 8px;
    font-weight: 700;
}

.value-content-advanced p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* 3D Feature Boxes */
.feature-box-3d {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.feature-box-3d::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(248, 129, 8, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.feature-box-3d:hover::before {
    opacity: 1;
}

.feature-box-3d:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 0 20px 50px rgba(248, 129, 8, 0.3);
    border-color: rgba(248, 129, 8, 0.4);
}

.feature-icon-3d {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #f88108 0%, #e67307 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 36px;
    box-shadow: 0 10px 30px rgba(248, 129, 8, 0.4);
    transition: all 0.5s;
    transform: translateZ(20px);
}

.feature-box-3d:hover .feature-icon-3d {
    transform: translateZ(40px) scale(1.1) rotateY(360deg);
    box-shadow: 0 15px 40px rgba(248, 129, 8, 0.5);
}

.feature-box-3d h3 {
    font-size: 24px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-box-3d p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

/* 3D Brand Cards */
.featured-brand-card-3d {
    perspective: 1000px;
    height: 100%;
}

.brand-card-3d-inner {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    transform-style: preserve-3d;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.featured-brand-card-3d:hover .brand-card-3d-inner {
    transform: rotateY(-10deg) rotateX(5deg) translateZ(30px);
    box-shadow: 0 20px 50px rgba(248, 129, 8, 0.3);
    border-color: rgba(248, 129, 8, 0.4);
}

.brand-card-3d-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(248, 129, 8, 0.1), transparent);
    transition: left 0.6s;
}

.featured-brand-card-3d:hover .brand-card-3d-inner::before {
    left: 100%;
}

.featured-brand-card-3d .featured-brand-logo {
    position: relative;
    z-index: 1;
}

.featured-brand-card-3d h3 {
    position: relative;
    z-index: 1;
}

.featured-brand-card-3d .brand-product-count {
    position: relative;
    z-index: 1;
}

.featured-brand-card-3d .brand-description {
    position: relative;
    z-index: 1;
}

.featured-brand-card-3d .btn {
    position: relative;
    z-index: 1;
    margin-top: auto;
}

/* Brands Stats Inline */
.brands-stats-inline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.brand-stat-inline {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(248, 129, 8, 0.1);
    transition: all 0.3s;
}

.brand-stat-inline:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(248, 129, 8, 0.2);
}

.stat-number-inline {
    font-size: 36px;
    font-weight: 800;
    color: #f88108;
    margin-bottom: 8px;
}

.stat-label-inline {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Help Options */
.help-options {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.help-option-card {
    flex: 1;
    min-width: 150px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: #000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.4s;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.help-option-card i {
    font-size: 32px;
    color: #f88108;
    transition: all 0.3s;
}

.help-option-card span {
    font-weight: 600;
    font-size: 14px;
}

.help-option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(248, 129, 8, 0.25);
    border-color: rgba(248, 129, 8, 0.3);
}

.help-option-card:hover i {
    transform: scale(1.2);
    color: #e67307;
}

/* Brands Stats Section */
.brands-stats-section {
    padding: 60px 0;
    background: var(--white);
}

.brands-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.brand-stat-card {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(248, 129, 8, 0.15);
    transition: all 0.4s;
}

.brand-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(248, 129, 8, 0.25);
}

.brand-stat-icon {
    width: 70px;
    height: 70px;
    background: #f88108;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(248, 129, 8, 0.4);
}

.brand-stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #f88108;
    margin-bottom: 10px;
}

.brand-stat-label {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Featured Brands Section */
.featured-brands-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.featured-brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.featured-brand-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.featured-brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(248, 129, 8, 0.25);
    border-color: rgba(248, 129, 8, 0.3);
}

.featured-brand-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.featured-brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f88108 0%, #e67307 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 40px;
    margin: 0 auto;
}

.featured-brand-card h3 {
    font-size: 24px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 700;
}

.featured-brand-card .brand-product-count {
    color: #f88108;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}

.featured-brand-card .brand-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* All Brands Section */
.all-brands-section {
    padding: 80px 0;
    background: var(--white);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.brand-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(248, 129, 8, 0.2);
    border-color: rgba(248, 129, 8, 0.3);
}

.brand-card-header {
    padding: 30px;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    text-align: center;
}

.brand-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-logo-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f88108 0%, #e67307 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto;
}

.brand-card-body {
    padding: 25px;
    flex-grow: 1;
}

.brand-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #000;
    font-weight: 700;
    text-align: center;
}

.brand-meta {
    text-align: center;
    margin-bottom: 15px;
}

.brand-product-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f88108;
    font-weight: 600;
    font-size: 14px;
}

.brand-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
    margin-bottom: 0;
}

.brand-card-footer {
    padding: 20px 25px;
    border-top: 1px solid #f0f0f0;
}

.no-brands {
    text-align: center;
    padding: 80px 20px;
}

.no-brands-icon {
    font-size: 80px;
    color: var(--border-color);
    margin-bottom: 20px;
}

.no-brands h3 {
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 10px;
}

/* Brand Partnership Section */
.brand-partnership-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    text-align: center;
}

.partnership-content {
    max-width: 700px;
    margin: 0 auto;
}

.partnership-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f88108 0%, #e67307 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 40px;
    box-shadow: 0 4px 20px rgba(248, 129, 8, 0.4);
}

.partnership-content h2 {
    font-size: 36px;
    color: #000;
    margin-bottom: 20px;
    font-weight: 700;
}

.partnership-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
}

/* FAQ Search Section */
.faq-search-section {
    padding: 50px 0;
    background: var(--bg-light);
}

.faq-search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.faq-search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #f88108;
    font-size: 20px;
}

.faq-search-box input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 16px;
    transition: all 0.3s;
}

.faq-search-box input:focus {
    outline: none;
    border-color: #f88108;
    box-shadow: 0 0 0 4px rgba(248, 129, 8, 0.1);
}

/* FAQ Categories Section */
.faq-categories-section {
    padding: 40px 0;
    background: var(--white);
    border-bottom: 2px solid var(--bg-light);
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.faq-category-btn {
    padding: 12px 24px;
    background: var(--bg-light);
    border: 2px solid transparent;
    border-radius: 25px;
    color: var(--text-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.faq-category-btn:hover,
.faq-category-btn.active {
    background: #f88108;
    color: white;
    border-color: #f88108;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(248, 129, 8, 0.3);
}

/* FAQ Content Section */
.faq-content-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-content {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 60px;
}

.faq-category-title {
    font-size: 32px;
    color: #f88108;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.faq-category-title i {
    font-size: 28px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-accordion-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.faq-accordion-item:hover {
    box-shadow: 0 4px 15px rgba(248, 129, 8, 0.15);
    border-color: rgba(248, 129, 8, 0.2);
}

.faq-accordion-item.active {
    border-color: rgba(248, 129, 8, 0.4);
    box-shadow: 0 4px 20px rgba(248, 129, 8, 0.2);
}

.faq-accordion-header {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-accordion-header:hover {
    background: rgba(248, 129, 8, 0.05);
}

.faq-accordion-header h3 {
    font-size: 20px;
    color: #000;
    margin: 0;
    font-weight: 600;
    flex: 1;
}

.faq-accordion-header i {
    color: #f88108;
    font-size: 18px;
    transition: transform 0.3s;
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-accordion-content p {
    padding: 0 30px 25px 30px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

/* FAQ CTA Section */
.faq-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f88108 0%, #e67307 100%);
    color: white;
    text-align: center;
}

.faq-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.faq-cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 40px;
}

.faq-cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.faq-cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Image & Text Sections (3D Style) */
.image-text-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.image-text-section:nth-child(even) {
    background: var(--bg-light);
}

.image-text-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-text-wrapper.reversed {
    direction: rtl;
}

.image-text-wrapper.reversed > * {
    direction: ltr;
}

.image-text-image {
    position: relative;
    perspective: 1000px;
}

.image-3d-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.image-text-section:hover .image-3d-container {
    transform: rotateY(-5deg) rotateX(5deg) translateZ(20px);
}

.image-3d {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-text-section:hover .image-3d {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 129, 8, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.image-text-content {
    padding: 40px;
}

.content-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f88108 0%, #e67307 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(248, 129, 8, 0.4);
}

.content-badge i {
    font-size: 16px;
}

.image-text-content h2 {
    font-size: 42px;
    color: #000;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.2;
}

.image-text-content > p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.content-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.content-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: rgba(248, 129, 8, 0.05);
    border-radius: 10px;
    border-left: 4px solid #f88108;
    transition: all 0.3s;
}

.content-feature-item:hover {
    background: rgba(248, 129, 8, 0.1);
    transform: translateX(5px);
}

.content-feature-item i {
    color: #f88108;
    font-size: 18px;
}

.content-feature-item span {
    font-weight: 600;
    color: #000;
    font-size: 16px;
}

/* Advanced Features List */
.features-list-advanced {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.feature-item-advanced {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.feature-item-advanced:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 8px 25px rgba(248, 129, 8, 0.2);
    border-color: rgba(248, 129, 8, 0.3);
}

.feature-icon-advanced {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f88108 0%, #e67307 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(248, 129, 8, 0.3);
}

.feature-content-advanced h4 {
    font-size: 20px;
    color: #000;
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-content-advanced p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Advanced Values List */
.values-list-advanced {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.value-item-advanced {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(248, 129, 8, 0.1);
    transition: all 0.4s;
    border: 2px solid rgba(248, 129, 8, 0.1);
}

.value-item-advanced:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 8px 25px rgba(248, 129, 8, 0.25);
    border-color: rgba(248, 129, 8, 0.3);
}

.value-number-advanced {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f88108 0%, #e67307 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 900;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(248, 129, 8, 0.3);
}

.value-content-advanced h4 {
    font-size: 22px;
    color: #f88108;
    margin-bottom: 8px;
    font-weight: 700;
}

.value-content-advanced p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* 3D Feature Boxes */
.feature-box-3d {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

.feature-box-3d::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(248, 129, 8, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.feature-box-3d:hover::before {
    opacity: 1;
}

.feature-box-3d:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(-5deg);
    box-shadow: 0 20px 50px rgba(248, 129, 8, 0.3);
    border-color: rgba(248, 129, 8, 0.4);
}

.feature-icon-3d {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #f88108 0%, #e67307 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 36px;
    box-shadow: 0 10px 30px rgba(248, 129, 8, 0.4);
    transition: all 0.5s;
    transform: translateZ(20px);
}

.feature-box-3d:hover .feature-icon-3d {
    transform: translateZ(40px) scale(1.1) rotateY(360deg);
    box-shadow: 0 15px 40px rgba(248, 129, 8, 0.5);
}

.feature-box-3d h3 {
    font-size: 24px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-box-3d p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

/* 3D Brand Cards */
.featured-brand-card-3d {
    perspective: 1000px;
    height: 100%;
}

.brand-card-3d-inner {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    transform-style: preserve-3d;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.featured-brand-card-3d:hover .brand-card-3d-inner {
    transform: rotateY(-10deg) rotateX(5deg) translateZ(30px);
    box-shadow: 0 20px 50px rgba(248, 129, 8, 0.3);
    border-color: rgba(248, 129, 8, 0.4);
}

.brand-card-3d-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(248, 129, 8, 0.1), transparent);
    transition: left 0.6s;
}

.featured-brand-card-3d:hover .brand-card-3d-inner::before {
    left: 100%;
}

.featured-brand-card-3d .featured-brand-logo {
    position: relative;
    z-index: 1;
}

.featured-brand-card-3d h3 {
    position: relative;
    z-index: 1;
}

.featured-brand-card-3d .brand-product-count {
    position: relative;
    z-index: 1;
}

.featured-brand-card-3d .brand-description {
    position: relative;
    z-index: 1;
}

.featured-brand-card-3d .btn {
    position: relative;
    z-index: 1;
    margin-top: auto;
}

/* Brands Stats Inline */
.brands-stats-inline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.brand-stat-inline {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(248, 129, 8, 0.1);
    transition: all 0.3s;
}

.brand-stat-inline:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(248, 129, 8, 0.2);
}

.stat-number-inline {
    font-size: 36px;
    font-weight: 800;
    color: #f88108;
    margin-bottom: 8px;
}

.stat-label-inline {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Help Options */
.help-options {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.help-option-card {
    flex: 1;
    min-width: 150px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: #000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.4s;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.help-option-card i {
    font-size: 32px;
    color: #f88108;
    transition: all 0.3s;
}

.help-option-card span {
    font-weight: 600;
    font-size: 14px;
}

.help-option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(248, 129, 8, 0.25);
    border-color: rgba(248, 129, 8, 0.3);
}

.help-option-card:hover i {
    transform: scale(1.2);
    color: #e67307;
}

/* Admin Pages */
.admin-page {
    padding: 40px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.product-form {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.form-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* Account Page */
.account-page {
    padding: 40px 0;
}

.account-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    margin-top: 30px;
}

.account-sidebar {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.account-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.account-menu a {
    padding: 12px 15px;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.account-menu a:hover,
.account-menu a.active {
    background: var(--bg-light);
    color: var(--primary-color);
}

.account-main h2 {
    margin-bottom: 25px;
    color: var(--primary-color);
}

.account-form {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.account-form small {
    display: block;
    color: var(--text-light);
    font-size: 12px;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }
    
    .header-search {
        width: 100%;
    }
    
    .nav-menu {
        flex-direction: column;
    }
    
    .dropdown-menu {
        position: static;
        display: none;
    }
    
    .has-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .products-banner {
        padding: 60px 0;
    }
    
    .products-banner-title {
        font-size: 32px;
    }
    
    .products-banner-subtitle {
        font-size: 16px;
    }
    
    .category-slider-section {
        padding: 30px 0;
    }
    
    .category-slide-item {
        flex: 0 0 160px;
    }
    
    .slider-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .products-page {
        grid-template-columns: 1fr;
    }
    
    .mobile-filter-toggle {
        display: block;
    }
    
    .products-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        z-index: 1000;
        overflow-y: auto;
        transition: left 0.3s;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }
    
    .products-sidebar.active {
        left: 0;
    }
    
    .close-sidebar {
        display: block;
    }
    
    .products-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .products-grid.list-view .product-card {
        flex-direction: column;
    }
    
    .products-grid.list-view .product-image {
        width: 100%;
        height: 250px;
    }
    
    .cart-content {
        grid-template-columns: 1fr;
    }
    
    .product-detail-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .account-content {
        grid-template-columns: 1fr;
    }
    
    .account-sidebar {
        position: static;
    }
}

/* Checkout Page */
.checkout-page {
    padding: 40px 0;
}

.checkout-form {
    margin-top: 30px;
}

.checkout-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.checkout-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.checkout-section h2 {
    font-size: 24px;
    color: #000;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f88108;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row .form-group:last-child {
    grid-column: span 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #000;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #f88108;
    box-shadow: 0 0 0 3px rgba(248, 129, 8, 0.1);
}

.form-group input[type="radio"] {
    margin-right: 8px;
    width: auto;
}

.form-group input[type="checkbox"] {
    margin-right: 8px;
    width: auto;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Order Summary */
.order-summary {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 20px;
}

.order-summary h2 {
    font-size: 24px;
    color: #000;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f88108;
}

.order-items {
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.order-item-details {
    flex: 1;
}

.order-item-details h4 {
    font-size: 14px;
    margin: 0 0 5px 0;
    color: #000;
}

.order-item-details p {
    font-size: 12px;
    color: #666;
    margin: 3px 0;
}

.order-item-total {
    font-weight: 600;
    color: #f88108;
    font-size: 16px;
}

.order-totals {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #eee;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 16px;
}

.total-row.total {
    font-size: 22px;
    font-weight: 700;
    color: #f88108;
    padding-top: 15px;
    border-top: 2px solid #f88108;
    margin-top: 10px;
}

.btn-large {
    padding: 15px 30px;
    font-size: 18px;
}

/* Order Confirmation Page */
.order-confirmation-page {
    padding: 40px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.confirmation-header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe8cc 100%);
    border-radius: 12px;
    margin-bottom: 40px;
}

.success-icon {
    font-size: 80px;
    color: #28a745;
    margin-bottom: 20px;
}

.confirmation-header h1 {
    font-size: 36px;
    color: #000;
    margin-bottom: 15px;
}

.order-number {
    font-size: 20px;
    color: #666;
    margin-bottom: 15px;
}

.confirmation-message {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.order-details {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.order-info-section,
.shipping-section,
.order-items-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.order-items-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.order-info-section h2,
.shipping-section h2,
.order-items-section h2 {
    font-size: 24px;
    color: #f88108;
    margin-bottom: 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-item strong {
    color: #666;
    font-size: 14px;
}

.info-item span {
    color: #000;
    font-size: 16px;
}

.status-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.status-badge.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-badge.status-processing {
    background: #cfe2ff;
    color: #084298;
}

.status-badge.status-shipped {
    background: #d1e7dd;
    color: #0f5132;
}

.status-badge.status-delivered {
    background: #d1e7dd;
    color: #0f5132;
}

.total-amount {
    font-size: 24px;
    font-weight: 700;
    color: #f88108;
}

.address-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #f88108;
    line-height: 1.8;
}

.order-items-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.order-items-table th {
    background: #f88108;
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.order-items-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.order-items-table tr:hover {
    background: #f9f9f9;
}

.item-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.item-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}

.confirmation-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

/* Responsive Checkout */
@media (max-width: 968px) {
    .checkout-content {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        position: static;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .confirmation-actions {
        flex-direction: column;
    }
    
    .confirmation-actions .btn {
        width: 100%;
    }
}

