* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #C8A882;
    --color-primary-dark: #B89770;
    --color-secondary: #8B7355;
    --color-accent: #E6D5C3;
    --color-white: #FFFFFF;
    --color-text: #2C2C2C;
    --color-text-light: #6B6B6B;
    --color-background: #F8F5F0;
    --color-purple: #C8A882;
    --color-purple-light: #D4B896;
    --color-green: #10B981;
    --color-discount: #FF6B6B;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Banner - Cashback */
.top-banner {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.top-banner img,
.top-banner video {
    width: 135%;
    height: auto;
    display: block;
    object-fit: cover;
    margin: 0;
    margin-left: -17.5%;
    margin-top: -50px;
    padding: 0;
}

.top-banner video {
    width: 135%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cashback-content {
    position: relative;
    z-index: 1;
}

.cashback-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.9;
}

.cashback-title {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.cashback-subtitle {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.95;
}

.cashback-description {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 16px;
}

.btn-cashback {
    background: var(--color-white);
    color: var(--color-primary);
    border: none;
    padding: 12px 32px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-cashback:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

/* Header */
header {
    background: var(--color-white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    margin: 0;
    padding: 0;
}

.header-top {
    background: var(--color-primary);
    padding: 12px 0;
    padding-top: 75px;
    padding-bottom: 18px;
    text-align: center;
    margin: 0;
    margin-top: -35px;
    position: relative;
    z-index: 1;
}

.header-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
    gap: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    width: 100%;
}

.header-logo-icon {
    width: 40px;
    height: 40px;
}

.header-logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: 2px;
    white-space: nowrap;
}

.header-main {
    padding: 16px 0;
}

.header-content-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.header-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    border-radius: 12px;
}

.address-new {
    display: flex;
    gap: 12px;
    flex: 1;
}

.address-icon {
    width: 20px;
    height: 20px;
    color: var(--color-purple);
    flex-shrink: 0;
    margin-top: 4px;
}

.address-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.address-street {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text);
    text-transform: uppercase;
}

.address-details {
    font-size: 11px;
    color: var(--color-text-light);
}

.address-location {
    font-size: 11px;
    color: var(--color-purple);
    font-weight: 600;
}

.cart-icon-new {
    background: var(--color-purple);
    border: none;
    padding: 16px;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(155, 89, 217, 0.25);
}

.cart-icon-new:hover {
    background: var(--color-purple-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 89, 217, 0.35);
}

.cart-icon-new:active {
    transform: scale(0.95);
}

.cart-icon-svg {
    width: 24px;
    height: 24px;
    color: var(--color-white);
}

.cart-badge-new {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FF4757;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, var(--color-white) 0%, var(--color-background) 100%);
    padding: 60px 0;
    text-align: center;
    margin-top: 0;
}

.main-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--color-text);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 40px;
    font-weight: 500;
}

.video-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.video-container video {
    width: 100%;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.video-play-btn i {
    font-size: 32px;
    color: var(--color-purple);
    margin-left: 4px;
}

.video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.video-play-btn.playing {
    opacity: 0;
    pointer-events: none;
}

/* Promotional Card */
.promo-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    margin: 40px auto;
    max-width: 500px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.promo-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFE8CC 0%, #FFDBB5 100%);
    border-radius: 50%;
}

.promo-icon i {
    font-size: 28px;
    color: var(--color-primary);
}

.promo-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 8px;
}

.promo-subtitle {
    font-size: 14px;
    color: var(--color-text-light);
}

/* Search Section */
.search-section {
    padding: 30px 0;
}

.search-form {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-form i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-light);
    font-size: 18px;
}

.search-form input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    border: 2px solid #E0E0E0;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    background: var(--color-white);
}

.search-form input:focus {
    border-color: var(--color-purple);
    box-shadow: 0 0 0 4px rgba(155, 89, 217, 0.1);
}

/* Categories Section */
.categories {
    padding: 20px 0;
    background: var(--color-background);
}

.category-tabs {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}

.category-tabs::-webkit-scrollbar {
    height: 4px;
}

.category-tabs::-webkit-scrollbar-track {
    background: #E0E0E0;
    border-radius: 10px;
}

.category-tabs::-webkit-scrollbar-thumb {
    background: var(--color-purple);
    border-radius: 10px;
}

.category-tab {
    padding: 0 0 12px 0;
    background: var(--color-white);
    border: 2px solid transparent;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 120px;
    overflow: hidden;
}

.category-tab i {
    font-size: 40px;
    width: 100%;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin: 0;
    color: var(--color-primary);
}

.category-tab-image {
    width: 100%;
    height: 96px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    display: block;
    box-shadow: none;
}

.category-tab:hover {
    border-color: var(--color-purple);
    background: rgba(155, 89, 217, 0.05);
}

.category-tab.active {
    background: var(--color-purple);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(155, 89, 217, 0.3);
}

/* Category Image Cards */
.category-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 40px 0;
    margin: 0;
}

.category-image-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    height: 480px;
    cursor: pointer;
    margin: 0;
    padding: 0;
    border: none;
}

.category-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.category-image-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

/* Products Section */
.products {
    padding: 40px 0 120px;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 40px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.product-image {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: var(--color-background);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-discount-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-discount);
    color: var(--color-white);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.product-size-badge {
    position: absolute;
    top: 16px;
    right: 60px;
    background: #1976d2;
    color: var(--color-white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
    z-index: 2;
}

.product-favorite {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--color-white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-favorite:hover {
    transform: scale(1.1);
    background: var(--color-discount);
    color: var(--color-white);
}

.product-favorite i {
    font-size: 18px;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-info p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-text);
}

.btn-add {
    background: var(--color-purple);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(155, 89, 217, 0.3);
}

.btn-add i {
    font-size: 20px;
    color: var(--color-white);
}

.btn-add:hover {
    background: var(--color-purple-light);
    transform: scale(1.05);
}

.btn-add:active {
    transform: scale(0.95);
}

.no-products {
    text-align: center;
    padding: 60px 20px;
    font-size: 18px;
    color: var(--color-text-light);
    grid-column: 1 / -1;
}

.no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-background);
    color: var(--color-text-light);
    font-size: 14px;
}

/* Fixed Cart Button Mobile */
.cart-fixed-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0,0,0,0.06);
    z-index: 40;
}

.cart-fixed-button {
    width: 100%;
    background: var(--color-purple);
    border: none;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(155, 89, 217, 0.3);
    transition: all 0.3s ease;
}

.cart-fixed-button:active {
    transform: scale(0.97);
}

.cart-fixed-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-fixed-icon {
    width: 24px;
    height: 24px;
    color: var(--color-white);
}

.cart-fixed-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
}

.cart-fixed-total {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-white);
}

/* Bottom Navigation Bar */
.bottom-navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0 12px;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.navbar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    color: var(--color-text);
    flex: 1;
    max-width: 80px;
}

.navbar-item i {
    font-size: 22px;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.navbar-item span:not(.navbar-badge) {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.navbar-item:active {
    transform: scale(0.95);
}

.navbar-item:active i,
.navbar-item:active span {
    color: var(--color-purple);
}

.navbar-whatsapp i {
    color: var(--color-green);
    font-size: 24px;
}

.navbar-whatsapp:active i {
    color: var(--color-green);
}

.navbar-badge {
    position: absolute;
    top: 4px;
    right: 8px;
    background: #FF4757;
    color: var(--color-white);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
}

/* Cart Sidebar */
.cart-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: var(--color-white);
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.cart-sidebar-header {
    padding: 24px;
    background: var(--color-purple);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-sidebar-header h2 {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-sidebar-close {
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cart-sidebar-close:hover {
    background: rgba(255,255,255,0.1);
}

.cart-sidebar-content {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.cart-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    font-size: 18px;
    color: var(--color-text-light);
    gap: 12px;
}

.cart-empty-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.cart-empty-sidebar i {
    font-size: 64px;
    color: var(--color-text-light);
    margin-bottom: 20px;
    opacity: 0.3;
}

.cart-empty-sidebar h3 {
    font-size: 22px;
    color: var(--color-text);
    margin-bottom: 8px;
}

.cart-empty-sidebar p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.cart-items-sidebar {
    padding: 20px;
    flex: 1;
}

.cart-item-sidebar {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--color-background);
    border-radius: 16px;
    margin-bottom: 16px;
    position: relative;
}

.cart-item-sidebar-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-white);
    flex-shrink: 0;
}

.cart-item-sidebar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-sidebar-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item-sidebar-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.item-size {
    font-size: 12px;
    font-weight: 600;
    background: var(--color-purple);
    color: var(--color-white);
    padding: 4px 8px;
    border-radius: 6px;
}

.cart-item-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-text);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-btn {
    background: var(--color-white);
    border: 2px solid var(--color-purple);
    color: var(--color-purple);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: var(--color-purple);
    color: var(--color-white);
}

.qty-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    min-width: 30px;
    text-align: center;
}

.item-total {
    font-size: 13px;
    color: var(--color-text-light);
}

.btn-remove-sidebar {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: var(--color-discount);
    cursor: pointer;
    font-size: 18px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-remove-sidebar:hover {
    background: rgba(255, 107, 107, 0.1);
}

.cart-summary-sidebar {
    padding: 24px;
    background: var(--color-background);
    border-top: 1px solid rgba(0,0,0,0.06);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.summary-line span {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
}

.total-price {
    font-size: 28px !important;
    font-weight: 900 !important;
    color: var(--color-purple) !important;
}

.btn-checkout-sidebar {
    width: 100%;
    padding: 18px;
    background: var(--color-purple);
    border: none;
    border-radius: 12px;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(155, 89, 217, 0.3);
}

.btn-checkout-sidebar:hover {
    background: var(--color-purple-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 89, 217, 0.4);
}

.btn-view-full-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: transparent;
    border: 2px solid var(--color-purple);
    border-radius: 12px;
    color: var(--color-purple);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-full-cart:hover {
    background: rgba(155, 89, 217, 0.05);
}

/* Size Selection Modal */
.size-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.size-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.size-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--color-white);
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.size-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.size-modal-header {
    padding: 24px;
    background: var(--color-purple);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 24px 24px 0 0;
}

.size-modal-header h3 {
    font-size: 20px;
    font-weight: 700;
}

.size-modal-close {
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.size-modal-close:hover {
    background: rgba(255,255,255,0.1);
}

.size-modal-content {
    padding: 24px;
}

.size-modal-product {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
    background: var(--color-background);
    border-radius: 16px;
}

.size-modal-product-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--color-white);
}

.size-modal-product-info {
    flex: 1;
}

.size-modal-product-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.size-modal-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-purple);
}

.size-selection {
    margin-bottom: 24px;
}

.size-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text);
    margin-bottom: 16px;
}

.size-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.size-btn {
    padding: 16px;
    background: var(--color-background);
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-btn:hover {
    border-color: var(--color-purple);
    background: rgba(155, 89, 217, 0.05);
}

.size-btn.selected {
    background: var(--color-purple);
    border-color: var(--color-purple);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(155, 89, 217, 0.3);
}

.size-error {
    color: var(--color-discount);
    font-size: 14px;
    margin-top: 12px;
}

.btn-add-to-cart-modal {
    width: 100%;
    padding: 18px;
    background: var(--color-purple);
    border: none;
    border-radius: 12px;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(155, 89, 217, 0.3);
}

.btn-add-to-cart-modal:hover {
    background: var(--color-purple-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 89, 217, 0.4);
}

/* PIX Modal */
.pix-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.pix-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.pix-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--color-white);
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.pix-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.pix-modal-header {
    padding: 24px;
    background: var(--color-green);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 24px 24px 0 0;
}

.pix-modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pix-modal-close {
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 24px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pix-modal-close:hover {
    background: rgba(255,255,255,0.1);
}

.pix-modal-content {
    padding: 24px;
}

.pix-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    gap: 16px;
}

.pix-loading i {
    font-size: 48px;
    color: var(--color-green);
}

.pix-qrcode-container {
    text-align: center;
}

.pix-instructions {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.pix-qrcode-image {
    margin-bottom: 24px;
}

.pix-qrcode-image img {
    max-width: 300px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.pix-copy-code {
    margin-bottom: 24px;
}

.pix-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 12px;
}

.pix-code-wrapper {
    display: flex;
    gap: 12px;
}

.pix-code-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    font-size: 14px;
    font-family: monospace;
    background: var(--color-background);
}

.btn-copy-pix {
    padding: 12px 20px;
    background: var(--color-purple);
    border: none;
    border-radius: 12px;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(155, 89, 217, 0.3);
}

.btn-copy-pix:hover {
    background: var(--color-purple-light);
}

.pix-amount {
    background: var(--color-background);
    padding: 20px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pix-amount-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-light);
}

.pix-amount-value {
    font-size: 28px;
    font-weight: 900;
    color: var(--color-green);
}

.pix-error {
    text-align: center;
    padding: 40px 20px;
}

.pix-error i {
    font-size: 64px;
    color: var(--color-discount);
    margin-bottom: 20px;
}

.pix-error p {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

.pix-error-message {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: var(--color-text-light) !important;
    margin-bottom: 24px !important;
}

.pix-error-detail {
    font-size: 12px !important;
    color: var(--color-text-light) !important;
}

/* Notifications */
.notification {
    position: fixed;
    top: 24px;
    right: 24px;
    background: var(--color-white);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    min-width: 300px;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    border-left: 4px solid var(--color-green);
}

.notification-success i {
    color: var(--color-green);
    font-size: 24px;
}

.notification-error {
    border-left: 4px solid var(--color-discount);
}

.notification-error i {
    color: var(--color-discount);
    font-size: 24px;
}

/* Buttons */
.btn-primary {
    padding: 14px 28px;
    background: var(--color-purple);
    border: none;
    border-radius: 12px;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(155, 89, 217, 0.3);
}

.btn-primary:hover {
    background: var(--color-purple-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 89, 217, 0.4);
}

/* Desktop - Banner menor */
@media (min-width: 769px) {
    .top-banner img {
        content: url('../img/WhatsApp Image 2026-01-15 at 17.15.03.jpeg');
        width: 100%;
        margin-left: 0;
        margin-top: 0;
    }
    
    .top-banner video {
        width: 100%;
        margin-left: 0;
        margin-top: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .top-banner {
        padding: 30px 16px;
    }
    
    .cashback-title {
        font-size: 36px;
    }
    
    .header-logo {
        height: 60px;
    }
    
    .address-new {
        display: none;
    }
    
    .cart-icon-new {
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1001;
    }
    
    .main-title {
        font-size: 36px;
    }
    
    .subtitle {
        font-size: 14px;
    }
    
    .video-container {
        border-radius: 16px;
    }
    
    .video-play-btn {
        width: 60px;
        height: 60px;
    }
    
    .video-play-btn i {
        font-size: 24px;
    }
    
    .category-images {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .category-image-card {
        height: 300px;
    }
    
    .category-image-title {
        font-size: 36px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info h3 {
        font-size: 15px;
    }
    
    .product-info p {
        font-size: 12px;
    }
    
    .price {
        font-size: 20px;
    }
    
    .btn-add {
        width: 40px;
        height: 40px;
    }
    
    .btn-add i {
        font-size: 16px;
    }
    
    .cart-fixed-mobile {
        display: block;
    }
    
    .cart-sidebar {
        max-width: 100%;
    }
    
    .up-club-float {
        bottom: 140px;
        left: 16px;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .whatsapp-float {
        bottom: 140px;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-float i {
        font-size: 28px;
    }
    
    .size-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    
    .size-btn {
        padding: 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cashback-title {
        font-size: 28px;
    }
    
    .main-title {
        font-size: 28px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .notification {
        min-width: auto;
        right: 16px;
        left: 16px;
    }
}

/* ========================================
   ADMIN PANEL STYLES
   ======================================== */

.admin-body {
    background: #f5f7fa;
    min-height: 100vh;
}

/* Login Styles */
.login-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.login-box {
    background: var(--color-white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 40px;
    width: 100%;
    max-width: 420px;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header i {
    font-size: 48px;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.login-header h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-text);
    margin: 0;
}

.login-form {
    margin-top: 30px;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 8px;
    font-size: 14px;
}

.login-form label i {
    color: var(--color-primary);
    font-size: 16px;
}

.login-form input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.login-form input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(200, 168, 130, 0.1);
}

.btn-login {
    width: 100%;
    padding: 16px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.btn-login:hover {
    background: #b8946d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 168, 130, 0.3);
}

.btn-login:active {
    transform: translateY(0);
}

.login-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.login-footer a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s ease;
}

.login-footer a:hover {
    color: #b8946d;
    text-decoration: underline;
}

.alert {
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 600;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.admin-header {
    background: linear-gradient(135deg, var(--color-purple) 0%, var(--color-purple-light) 100%);
    color: var(--color-white);
    padding: 24px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.admin-header h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-nav {
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-nav span {
    font-weight: 600;
}

.btn-link, .btn-logout {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-link {
    background: rgba(255,255,255,0.2);
    color: var(--color-white);
}

.btn-link:hover {
    background: rgba(255,255,255,0.3);
}

.btn-logout {
    background: rgba(255,71,87,0.2);
    color: var(--color-white);
}

.btn-logout:hover {
    background: rgba(255,71,87,0.3);
}

.admin-container {
    padding-bottom: 60px;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.admin-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.admin-card h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.product-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 700;
    color: var(--color-text);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-purple);
    box-shadow: 0 0 0 4px rgba(155, 89, 217, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group small {
    color: var(--color-text-light);
    font-size: 12px;
}

.form-actions {
    display: flex;
    gap: 12px;
}

.btn-primary {
    padding: 14px 28px;
    background: var(--color-purple);
    border: none;
    border-radius: 12px;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(155, 89, 217, 0.3);
}

.btn-primary:hover {
    background: var(--color-purple-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 89, 217, 0.4);
}

.btn-secondary {
    padding: 14px 28px;
    background: #6c757d;
    border: none;
    border-radius: 12px;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: #5a6268;
}

.products-list {
    margin-top: 30px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--color-background);
    border-radius: 12px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.product-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--color-white);
    flex-shrink: 0;
}

.product-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-item-info {
    flex: 1;
}

.product-item-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}

.product-item-info p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.product-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
}

.product-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--color-text-light);
}

.product-actions {
    display: flex;
    gap: 8px;
}

.btn-edit, .btn-delete {
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-edit {
    background: #ffc107;
    color: var(--color-text);
}

.btn-edit:hover {
    background: #ffb300;
}

.btn-delete {
    background: #dc3545;
    color: var(--color-white);
}

.btn-delete:hover {
    background: #c82333;
}

.no-products {
    text-align: center;
    padding: 40px;
    color: var(--color-text-light);
    font-size: 16px;
}

/* Admin Responsivo */
@media (max-width: 768px) {
    .admin-header .container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .admin-nav {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-link, .btn-logout {
        width: 100%;
        justify-content: center;
    }
    
    .admin-grid {
        grid-template-columns: 1fr;
    }
    
    .product-item {
        flex-direction: column;
        text-align: center;
    }
    
    .product-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-edit, .btn-delete {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   FOOTER STYLES
   ======================================== */

.site-footer {
    background: #ffffff;
    margin-top: 80px;
}

.footer-top {
    background: #ffffff;
    padding: 60px 0 40px;
    border-top: 1px solid #e5e7eb;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0 0 5px 0;
    letter-spacing: 1px;
}

.footer-logo p {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0 0 25px 0;
}

.footer-brand {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.footer-brand small {
    font-size: 11px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.footer-brand strong {
    font-size: 16px;
    color: var(--color-text);
    font-weight: 700;
}

.footer-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--color-text);
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white !important;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.2);
}

.footer-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    padding-left: 20px !important;
}

.footer-whatsapp i {
    font-size: 20px;
}

.footer-bottom {
    background: #1f2937;
    color: #d1d5db;
    padding: 40px 0 30px;
}

.footer-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #374151;
}

.footer-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.footer-section-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-methods i {
    font-size: 32px;
    color: #9ca3af;
    transition: color 0.3s ease;
}

.payment-methods i:hover {
    color: #ffffff;
}

.footer-legal {
    margin-top: 30px;
    font-size: 13px;
    line-height: 1.8;
    color: #9ca3af;
}

.footer-legal p {
    margin: 0 0 15px 0;
}

.footer-legal p:last-child {
    margin-bottom: 0;
}

.footer-legal strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-copyright {
    margin-top: 25px !important;
    padding-top: 25px;
    border-top: 1px solid #374151;
    text-align: center;
    color: #6b7280;
    font-size: 12px;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 40px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    .footer-legal {
        text-align: center;
    }
    
    .footer-bottom {
        padding: 30px 0 20px;
    }
}

