@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --primary: #c5a880; /* Champagne Gold / Bronze */
    --primary-dark: #b2936c;
    --primary-light: #f7f2ea;
    --dark: #121212; /* Luxury Slate Black */
    --dark-muted: #1e1e1e;
    --light: #fafaf9; /* Pristine Marble White */
    --beige: #f5f2eb; /* Warm stone beige */
    --white: #ffffff;
    --text: #2c2c2a;
    --text-muted: #757570;
    --border: #e6e0d4;
    --border-light: #f0ebe0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 40px rgba(18, 18, 18, 0.12);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--light);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* Main Container */
.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 4px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--dark);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-gold {
    background-color: var(--primary);
    color: var(--white);
}

.btn-gold:hover {
    background-color: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border-color: var(--dark);
    background-color: transparent;
    color: var(--dark);
}

.btn-outline:hover {
    background-color: var(--dark);
    color: var(--white);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-full {
    display: flex;
    width: 100%;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 2px;
}

.badge-sale {
    background-color: #ffebee;
    color: #c62828;
}

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

.badge-out {
    background-color: #efebe9;
    color: #4e342e;
}

/* Header & Navigation */
header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(250, 250, 249, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 24px;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 8px;
    color: var(--dark);
    transition: var(--transition);
}

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

.icon-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Nav Toggler */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--dark);
    transition: var(--transition);
}

/* Cart Drawer (Inspired by Gonoise.com sliding drawer) */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background-color: var(--white);
    z-index: 1001;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

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

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

.cart-drawer-header h3 {
    font-size: 20px;
}

.cart-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
    transition: var(--transition);
}

.cart-close-btn:hover {
    color: var(--primary);
}

.cart-drawer-items {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.cart-drawer-item {
    display: flex;
    gap: 16px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}

.cart-item-img {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--beige);
    flex-shrink: 0;
}

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

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

.cart-item-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 4px;
    line-height: 1.3;
}

.cart-item-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.cart-item-price {
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

.cart-item-qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 4px;
    width: fit-content;
    margin-top: 8px;
}

.cart-qty-btn {
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.cart-qty-input {
    width: 32px;
    border: none;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    pointer-events: none;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 12px;
    text-decoration: underline;
    margin-top: 8px;
}

.cart-item-remove:hover {
    color: #c62828;
}

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

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-weight: 500;
}

.cart-summary-total {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    border-top: 1px solid var(--border);
    padding-top: 12px;
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(18,18,18,0.8) 0%, rgba(18,18,18,0.4) 60%, rgba(18,18,18,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 650px;
}

.hero-tagline {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 16px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    animation: fadeInLeft 1s ease 0.2s both;
}

.hero-desc {
    font-size: 16px;
    color: #e5dfd5;
    margin-bottom: 36px;
    line-height: 1.6;
    animation: fadeInLeft 1s ease 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Categories Section */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-tagline {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 8px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.category-card {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.category-img {
    width: 100%;
    height: 100%;
    background-color: var(--beige);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.category-card:hover .category-img {
    transform: scale(1.08);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(18,18,18,0.9) 0%, rgba(18,18,18,0.4) 70%, transparent 100%);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.category-name {
    font-size: 24px;
    margin-bottom: 8px;
}

.category-link {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-link span {
    transition: var(--transition);
}

.category-card:hover .category-link span {
    transform: translateX(5px);
}

/* Product Card Component (Modern Gonoise Grid Card) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

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

.product-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
}

.product-card-img {
    position: relative;
    height: 320px;
    overflow: hidden;
    background-color: var(--beige);
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-card-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(255,255,255,0.95), transparent);
    display: flex;
    justify-content: center;
    transition: var(--transition);
    z-index: 6;
}

.product-card:hover .product-card-actions {
    bottom: 0;
}

.product-card-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-cat {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.product-card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.35;
    flex: 1;
}

.product-card-title a:hover {
    color: var(--primary);
}

.product-card-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-price-current {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}

.product-price-original {
    font-size: 13px;
    text-decoration: line-through;
    color: var(--text-muted);
}

/* Feature/Promo Banner */
.promo-banner {
    background-color: var(--dark);
    color: var(--white);
    padding: 100px 0;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.promo-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 50px;
}

.promo-subtitle {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.promo-title {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 24px;
    color: var(--white);
}

.promo-desc {
    color: #a8a8a3;
    margin-bottom: 32px;
    font-size: 15px;
}

.promo-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.promo-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.point-icon {
    color: var(--primary);
    font-size: 20px;
}

.point-text h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 4px;
}

.point-text p {
    color: #888;
    font-size: 12px;
}

.promo-img {
    border-radius: 8px;
    overflow: hidden;
    height: 450px;
    background-color: var(--dark-muted);
}

.promo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonials / Reviews */
.testimonials-section {
    background-color: var(--beige);
    padding: 80px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.rating-stars {
    color: #ffb300;
    margin-bottom: 16px;
}

.testimonial-text {
    font-style: italic;
    color: #4c4c4a;
    font-size: 15px;
    margin-bottom: 24px;
}

.testimonial-author h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--text-muted);
}

/* Shop Page Layout */
.shop-page-wrapper {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    padding: 60px 0;
}

.shop-sidebar {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    height: fit-content;
}

.filter-group {
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 25px;
}

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

.filter-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
}

.filter-item input[type="checkbox"] {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
}

.filter-item label {
    cursor: pointer;
    flex-grow: 1;
}

.shop-main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.shop-results-count {
    font-size: 14px;
    color: var(--text-muted);
}

.shop-sorting select {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background-color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
}

/* Product Details Page Layout */
.product-details-wrapper {
    padding: 60px 0;
}

.product-main-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    margin-bottom: 60px;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-featured-img {
    height: 550px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--beige);
    position: relative;
    border: 1px solid var(--border-light);
}

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

.product-thumbnails {
    display: flex;
    gap: 15px;
}

.thumb-btn {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--beige);
    border: 2px solid transparent;
    cursor: pointer;
    padding: 0;
}

.thumb-btn.active {
    border-color: var(--primary);
}

.thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-meta-panel {
    display: flex;
    flex-direction: column;
}

.product-detail-sku {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-detail-title {
    font-size: clamp(28px, 4vw, 38px);
    line-height: 1.2;
    margin-bottom: 16px;
}

.product-detail-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 24px;
}

.product-detail-price .current {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
}

.product-detail-price .original {
    font-size: 18px;
    text-decoration: line-through;
    color: var(--text-muted);
}

.product-detail-desc {
    font-size: 15px;
    color: #4c4c4a;
    margin-bottom: 30px;
    line-height: 1.7;
}

.product-detail-specs-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    background-color: var(--beige);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 30px;
}

.spec-summary-item {
    text-align: center;
}

.spec-summary-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.spec-summary-val {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.product-action-row {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.product-qty-select {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 4px;
}

.product-qty-select .btn-qty {
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
}

.product-qty-select input {
    width: 44px;
    height: 44px;
    border: none;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    pointer-events: none;
}

/* Tabs System on Product Details */
.product-tabs-wrapper {
    margin-top: 60px;
    border-top: 1px solid var(--border-light);
    padding-top: 40px;
}

.tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 30px;
    gap: 40px;
}

.tab-nav-btn {
    background: none;
    border: none;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    position: relative;
    color: var(--text-muted);
}

.tab-nav-btn.active {
    color: var(--dark);
}

.tab-nav-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

.tab-content-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content-panel.active {
    display: block;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid var(--border-light);
}

.specs-table td {
    padding: 15px 20px;
    font-size: 14px;
}

.specs-table td.label {
    font-weight: 600;
    width: 30%;
    color: var(--dark);
    background-color: var(--beige);
}

/* Cart & Checkout Pages */
.cart-table-wrapper {
    margin: 50px 0;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th, .cart-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.cart-table th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    padding: 60px 0;
}

.checkout-form-section {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
}

.checkout-summary-section {
    background-color: var(--beige);
    padding: 40px;
    border-radius: 8px;
    height: fit-content;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    color: var(--dark);
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.15);
}

.payment-options {
    margin-top: 30px;
    border-top: 1px solid var(--border-light);
    padding-top: 30px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: var(--transition);
}

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

.payment-option.active {
    border-color: var(--primary);
    background-color: var(--primary-light);
}

.payment-option input[type="radio"] {
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
}

.card-details-fields {
    margin-top: 15px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 6px;
    border: 1px solid var(--border-light);
    display: none;
}

.card-details-fields.active {
    display: block;
}

/* Order Success & Info Pages */
.success-card {
    text-align: center;
    background-color: var(--white);
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    max-width: 650px;
    margin: 80px auto;
}

.success-icon {
    font-size: 64px;
    color: var(--success);
    margin-bottom: 24px;
}

.success-order-id {
    font-family: monospace;
    background-color: var(--beige);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 16px;
    display: inline-block;
    margin: 15px 0 30px 0;
}

.order-details-table {
    width: 100%;
    margin-bottom: 30px;
    border-collapse: collapse;
}

.order-details-table th, .order-details-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

/* Footer Section */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 40px 0;
    margin-top: 80px;
    border-top: 4px solid var(--primary);
}

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

.footer-col h3 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    color: #a8a8a3;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    color: #a8a8a3;
    font-size: 14px;
}

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

.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #a8a8a3;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 4px;
    border: 1px solid #333;
    background-color: var(--dark-muted);
    color: var(--white);
    font-family: var(--font-body);
    outline: none;
}

.newsletter-form input::placeholder {
    color: #666;
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666;
}

/* Custom Modal/Alert */
.custom-alert {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: var(--dark);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateY(150px);
    transition: var(--transition);
}

.custom-alert.active {
    transform: translateY(0);
}

.custom-alert-icon {
    color: var(--primary);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Media Queries */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .category-card {
        height: 280px;
    }
    .promo-grid {
        grid-template-columns: 1fr;
    }
    .promo-img {
        height: 300px;
        order: -1;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 70px;
    }
    .nav-links {
        display: none; /* Add JS toggle for responsive menu if desired */
    }
    .menu-toggle {
        display: flex;
    }
    .shop-page-wrapper {
        grid-template-columns: 1fr;
    }
    .product-main-grid {
        grid-template-columns: 1fr;
    }
    .product-featured-img {
        height: 400px;
    }
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}
