@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #4f46e5;
    --primary-hover: #4338ca;
    --bg-light: #f8fafc;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --text-light: #94a3b8;
    --border-light: #e2e8f0;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.main-content {
    flex-grow: 1;
}

/* Typography */
.text-primary {
    color: var(--primary);
}

.text-muted {
    color: var(--text-muted);
}

.text-center {
    text-align: center;
}

.font-bold {
    font-weight: 700;
}

.font-medium {
    font-weight: 500;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Components */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -10px rgba(79, 70, 229, 0.15);
    border-color: rgba(79, 70, 229, 0.2);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    border-bottom: 1px solid var(--white);
    transition: all 0.3s;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo i {
    font-size: 2rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.logo:hover i {
    transform: rotate(12deg);
}

.nav-desktop {
    display: flex;
    gap: 2rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-desktop a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--text-muted);
}

.header-actions a,
.header-actions button {
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: inherit;
}

.header-actions a:hover,
.header-actions button:hover {
    color: var(--primary);
}

.cart-icon {
    position: relative;
    display: flex;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--border-light);
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-weight: 500;
    color: var(--text-muted);
}

.mobile-menu a:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

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

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

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

.btn-success {
    background-color: #10b981 !important;
    border-color: #10b981 !important;
    color: var(--white) !important;
}

.btn-grow-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 0.75rem;
}

/* Footer */
.footer {
    background-color: var(--white);
    border-top: 1px solid var(--border-light);
    padding: 4rem 0 2rem;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-muted);
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.form-input {
    flex-grow: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    outline: none;
}

.form-input:focus {
    border-color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-bottom-links a {
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

.payment-icons {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
    color: var(--text-light);
}

/* Utilities */
.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.pt-20 {
    padding-top: 5rem;
}

.py-12 {
    padding: 3rem 0;
}

.py-20 {
    padding: 5rem 0;
}

/* Grid Helpers */
.grid {
    display: grid;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

/* Responsive basics */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .hide-mobile {
        display: none;
    }
}

@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Product Card */
.product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--white);
    padding: 1rem;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.7s;
}

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

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-md);
}

.product-badge-left {
    right: auto;
    left: 1rem;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.glass-card:hover .product-overlay {
    opacity: 1;
}

.overlay-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--white);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s;
    transform: translateY(1rem);
}

.glass-card:hover .overlay-btn {
    transform: translateY(0);
}

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

.overlay-btn.glass-btn {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition-delay: 0.1s;
}

.overlay-btn.glass-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

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

.product-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.product-action {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.3s;
    background: none;
    border: none;
    cursor: pointer;
}

.product-action:hover {
    color: var(--primary-hover);
}

/* Category Card */
.category-card {
    padding: 2rem;
    text-align: center;
    align-items: center;
}

.category-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
    margin-left: auto;
    margin-right: auto;
}

.glass-card:hover .category-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.category-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.category-count {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.hero-text-wrapper {
    max-width: 650px;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-description {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Trust Banner */
.trust-banner {
    background-color: var(--primary);
    padding: 1.5rem 0;
    border-top: 1px solid var(--primary-hover);
    border-bottom: 1px solid var(--primary-hover);
    position: relative;
    z-index: 20;
}

.trust-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-item i {
    font-size: 1.25rem;
    color: var(--white);
}

/* Section Headers */
.section-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.section-header-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .section-header-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }

    .trust-container {
        gap: 4rem;
    }
}

.view-all-link {
    color: var(--text-muted);
    font-weight: 700;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.view-all-link:hover {
    color: var(--primary);
}

/* Products Grid */
.products-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.categories-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Content sections */
.bg-white {
    background-color: var(--white);
}

.bg-slate-50 {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

/* Contact Page */
.page-header {
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 2fr;
    }
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-light);
}

.checkout-step-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 1.5rem;
    padding: 2.5rem;
    height: 100%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    width: 100%;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    font-weight: 500;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-control:focus {
    border-color: var(--primary);
}

select.form-control {
    appearance: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-block {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}

.btn-grow-large {
    flex-grow: 1;
    font-size: 1.125rem;
}

/* Section Themes */
.section-white {
    padding: 5rem 0;
    background-color: var(--white);
}

.section-light {
    padding: 5rem 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.section-padding {
    padding: 5rem 0;
}


/* Cart Page */
.cart-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .cart-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    box-shadow: var(--shadow-sm);
}

@media (min-width: 640px) {
    .cart-item {
        flex-direction: row;
        align-items: center;
    }
}

.cart-item-remove {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--text-light);
    transition: color 0.3s;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
}

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

.cart-item-img {
    width: 100%;
    height: 8rem;
    flex-shrink: 0;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 0.75rem;
    padding: 0.5rem;
}

@media (min-width: 640px) {
    .cart-item-img {
        width: 8rem;
    }
}

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

.cart-item-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.cart-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.cart-item-title a {
    transition: color 0.3s;
}

.cart-item-title a:hover {
    color: var(--primary);
}

.cart-item-desc {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.cart-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    overflow: hidden;
    background: var(--bg-light);
}

.quantity-btn {
    padding: 0.25rem 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.quantity-btn:hover {
    color: var(--text-dark);
    background: #e2e8f0;
}

.quantity-val {
    padding: 0.25rem 1rem;
    font-weight: 700;
    font-size: 0.875rem;
    background: var(--white);
    border-left: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
}

.cart-item-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.order-summary {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 7rem;
}

.order-summary-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.summary-rows {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.summary-row {
    display: flex;
    justify-content: space-between;
}

.summary-val {
    color: var(--text-dark);
    font-weight: 700;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.summary-total-label {
    font-size: 1.25rem;
    font-weight: 700;
}

.summary-total-val {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
}

.secure-checkout {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}


/* Checkout Page */
.checkout-header {
    margin-bottom: 2rem;
}

.checkout-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 2rem;
}

.checkout-breadcrumb a {
    transition: color 0.3s;
}

.checkout-breadcrumb a:hover {
    color: var(--primary);
}

.checkout-breadcrumb .active {
    color: var(--text-dark);
    font-weight: 700;
}

.checkout-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .checkout-grid {
        grid-template-columns: 2fr 1fr;
    }
}

.checkout-form-section {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.checkout-section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.checkout-step-num {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.checkout-section-title h2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.payment-method-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 1rem;
}

.payment-method-label:hover {
    border-color: var(--primary);
    background: var(--bg-light);
}

.payment-method-label.active {
    border: 2px solid var(--primary);
    background: rgba(79, 70, 229, 0.05);
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: var(--text-muted);
}

.checkout-input-icon {
    position: relative;
}

.checkout-input-icon i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.25rem;
}

.checkout-input-icon input {
    padding-left: 3rem;
}

/* Order Summary Items */
.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.order-item-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.order-item-img {
    width: 3rem;
    height: 3rem;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
    padding: 0.25rem;
}

.order-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.order-item-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.order-item-qty {
    color: var(--text-muted);
    font-weight: 500;
}

.order-item-price {
    font-weight: 700;
    color: var(--text-dark);
}

.summary-divider {
    height: 1px;
    background: var(--border-light);
    margin: 1.5rem 0;
}

.terms-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 1rem;
}

/* Page Specific Layouts */
.shop-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e2e8f0 100%);
    border-bottom: 1px solid var(--border-light);
}

/* About Page Premium Styles */
.about-hero {
    position: relative;
    padding: 12rem 0 8rem;
    overflow: hidden;
    background: #020617;
    color: #ffffff;
    text-align: center;
}

.about-hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    z-index: 1;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(15, 23, 42, 0.1), #020617);
    z-index: 2;
}

.about-hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #ffffff !important;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.about-hero-gradient {
    background: linear-gradient(to right, #a5b4fc, #e879f9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.about-hero-desc {
    font-size: 1.35rem;
    max-width: 750px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-weight: 400;
}

/* Policy Pages Premium Styles */
.policy-hero {
    position: relative;
    padding: 10rem 0 6rem;
    background: #020617;
    color: #ffffff;
    text-align: center;
    margin-bottom: 0;
}

.policy-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff !important;
}

.policy-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.policy-section {
    padding: 4rem 0 8rem;
    background: var(--bg-light);
}

.policy-card {
    background: white;
    padding: 4rem;
    border-radius: 2rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
    line-height: 1.8;
}

.policy-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--bg-light);
}

.policy-card h3:first-of-type {
    margin-top: 0;
}

.policy-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-card p {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
}

.policy-card ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.policy-card ul li {
    list-style: disc;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.stats-section {
    margin-top: -4rem;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    background: white;
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.journey-section {
    padding: 10rem 0;
    background: var(--bg-light);
}

.journey-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.journey-content {
    position: relative;
}

.journey-year {
    font-size: 8rem;
    font-weight: 900;
    color: rgba(79, 70, 229, 0.05);
    position: absolute;
    top: -4rem;
    left: -2rem;
    z-index: 1;
}

.journey-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.journey-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.craft-section {
    padding: 10rem 0;
    background: white;
}

.craft-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.craft-card {
    padding: 3rem;
    border-radius: 2rem;
    background: var(--bg-light);
    transition: transform 0.3s;
}

.craft-card:hover {
    transform: translateY(-1rem);
    background: white;
    box-shadow: var(--shadow-lg);
}

.craft-icon {
    width: 4rem;
    height: 4rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.craft-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.craft-desc {
    color: var(--text-muted);
    line-height: 1.6;
}

.team-section {
    padding: 10rem 0;
    background: #f8fafc;
}

.team-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-md);
}

.team-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-socials a {
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: color 0.3s;
}

.team-socials a:hover {
    color: var(--primary);
}

/* Filter System */
.filter-wrapper {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-sm);
}

.filter-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.search-group {
    flex: 1;
    min-width: 300px;
}

.filter-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
}

.search-input-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.2rem;
}

.search-input-wrapper .filter-select {
    padding-left: 3rem;
    padding-right: 4.5rem;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
}

.search-actions {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-clear {
    color: var(--text-muted);
    transition: color 0.3s;
    font-size: 1.2rem;
    display: flex;
}

.search-submit-btn {
    background: var(--primary);
    color: white;
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.search-submit-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.search-clear:hover {
    color: var(--primary);
}

.filter-select {
    border: 1px solid var(--border-light);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s;
    background: white;
    cursor: pointer;
    min-width: 160px;
    font-weight: 600;
    color: var(--text-dark);
}

.filter-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.price-range-group .price-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 0.75rem;
    padding: 0 0.75rem;
}

.price-input {
    width: 80px !important;
    min-width: unset !important;
    border: none !important;
    padding: 0.75rem 0.25rem !important;
    text-align: center;
    background: transparent !important;
}

.price-input:focus {
    box-shadow: none !important;
}

.price-separator {
    color: var(--text-muted);
    font-weight: 700;
}

.active-filters {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.filter-tag a {
    color: white;
    display: flex;
    opacity: 0.8;
}

.filter-tag a:hover {
    opacity: 1;
}

.empty-state-icon {
    width: 6rem;
    height: 6rem;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.empty-state-icon i {
    font-size: 3rem;
}

.results-count {
    font-size: 0.9rem;
}


.pagination {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 4rem;
}

.pagination-link {
    min-width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    font-weight: 700;
    transition: all 0.3s;
    padding: 0 !important;
}

.pagination-link.btn-primary {
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.pagination-link.btn-outline:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}


/* Product Detail Page */
.breadcrumb {
    padding: 6rem 0 1rem;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb-container {
    display: flex;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-main-img {
    padding: 2rem;
    background: var(--bg-light);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 1rem;
    border: 1px solid var(--border-light);
}

.product-main-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.product-thumbnail {
    aspect-ratio: 1;
    background: var(--bg-light);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.product-thumbnail.active {
    border-color: var(--primary);
    background: var(--white);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-price-large {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 800;
}

.product-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: var(--text-dark);
    font-weight: 500;
}

.product-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-rating {
    color: #fbbf24;
    display: flex;
    gap: 0.25rem;
}

.product-description {
    line-height: 1.8;
    color: var(--text-muted);
}

.divider {
    height: 1px;
    background: var(--border-light);
    margin: 1rem 0;
}

.purchase-actions {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

/* CTA Card */
.cta-card {
    padding: 4rem;
    text-align: center;
    border: 2px dashed var(--primary);
    background: rgba(79, 70, 229, 0.05);
    border-radius: 1.5rem;
}

.cta-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.cta-desc {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--text-muted);
}

.quantity-input-group {
    display: flex;
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    overflow: hidden;
    width: 130px;
    background: var(--bg-light);
}

.quantity-input-group button {
    padding: 0 1.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.25rem;
    transition: background 0.3s;
}

.quantity-input-group button:hover {
    background: rgba(0, 0, 0, 0.05);
}

.quantity-input-group input {
    width: 100%;
    text-align: center;
    border: none;
    background: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    outline: none;
}

.product-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 1rem;
}

.product-meta-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Contact Page Helpers */
.contact-header-desc {
    max-width: 600px;
    margin: 0 auto;
}

.form-title {
    font-size: 2rem;
    margin-bottom: 2rem;
}

/* Cart & Checkout Helpers */
.cart-summary-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 7rem;
}

.checkout-section {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}


/* About Page */
.about-hero {
    position: relative;
    padding: 120px 0 80px;
    background: var(--bg-light);
    overflow: hidden;
    text-align: center;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 900px;
    height: 100%;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 50%;
    filter: blur(120px);
}

.about-hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.about-hero-gradient {
    background: linear-gradient(to right, var(--primary), #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.stats-section {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
}

.mission-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .mission-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.mission-image-container {
    position: relative;
}

.mission-image-glow {
    position: absolute;
    inset: -1rem;
    background: linear-gradient(to bottom right, #e0e7ff, #dbeafe);
    border-radius: 2.5rem;
    filter: blur(24px);
    opacity: 0.6;
}

.mission-image {
    position: relative;
    border-radius: 2rem;
    width: 100%;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.mission-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-tag {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
}

.mission-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.mission-text {
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.7;
}

.mission-founder {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.founder-avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-md);
}

.founder-name {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-dark);
}

.founder-role {
    color: var(--text-light);
    font-weight: 500;
}

/* Checkout Page Enhancements */
.checkout-layout {
    padding: 100px 0;
    background: var(--bg-light);
}

.checkout-breadcrumb-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.checkout-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.checkout-grid-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .checkout-grid-container {
        grid-template-columns: 2fr 1fr;
    }
}

.checkout-step-card {
    background: var(--white);
    border-radius: 2rem;
    padding: 2.5rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.checkout-step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--bg-light);
}

.checkout-step-badge {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

.checkout-step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.checkout-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .checkout-form-grid.two-cols {
        grid-template-columns: 1fr 1fr;
    }

    .checkout-form-grid.three-cols {
        grid-template-columns: repeat(3, 1fr);
    }
}

.checkout-field-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.checkout-input-field {
    width: 100%;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 0.75rem;
    padding: 0.875rem 1rem;
    font-family: inherit;
    font-weight: 500;
    outline: none;
    transition: all 0.3s;
}

.checkout-input-field:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.1);
    background: var(--white);
}

.payment-options-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-option-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-option-item:hover {
    background: var(--bg-light);
    border-color: var(--text-light);
}

.payment-option-item.selected {
    border: 2px solid var(--primary);
    background: rgba(79, 70, 229, 0.05);
}

.payment-option-info {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-option-name {
    font-weight: 700;
    color: var(--text-dark);
}

.payment-method-icons {
    display: flex;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: var(--text-light);
}

.checkout-sidebar-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 2rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
}

.checkout-summary-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.checkout-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.checkout-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-item-thumb-box {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.checkout-item-thumb {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 0.75rem;
    padding: 0.25rem;
    flex-shrink: 0;
}

.checkout-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.checkout-item-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.checkout-item-qty {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.checkout-item-price {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.checkout-summary-rows {
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    color: var(--text-muted);
}

.checkout-summary-row .val {
    color: var(--text-dark);
    font-weight: 700;
}

.checkout-total-row {
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-total-label {
    font-size: 1.25rem;
    font-weight: 700;
}

.checkout-total-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.checkout-pay-btn {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    padding: 1.25rem;
    border-radius: 1rem;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3);
}

.checkout-pay-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(79, 70, 229, 0.4);
}

.checkout-footer-text {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.5;
}

/* Payment Step Specifics */
.checkout-step-card {
    position: relative;
    overflow: hidden;
}

.payment-card-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card-input-wrapper {
    position: relative;
}

.card-input-wrapper i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--text-light);
}

.payment-error-box {
    background: #fffafa;
    border: 1px solid #ffe4e6;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    margin-bottom: 0;
    display: none;
    /* Shown via JS */
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    animation: fadeInScale 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.payment-error-icon-box {
    width: 5rem;
    height: 5rem;
    background: #fef2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #dc2626;
}

.payment-error-content h4 {
    color: #991b1b;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.payment-error-content p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto 2rem;
}

.btn-chat-agent {
    background: #dc2626;
    color: #ffffff;
    width: 100%;
    padding: 1.25rem;
    border-radius: 0.75rem;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-chat-agent:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(220, 38, 38, 0.3);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }
}

.processing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(2px);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
    gap: 1.5rem;
    border-radius: 1.5rem;
}

.spinner {
    width: 3rem;
    height: 3rem;
    border: 4px solid var(--border-light);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.processing-text {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.125rem;
}

.shipping-info-preview {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--border-light);
}

.shipping-info-preview h3 {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.shipping-info-preview p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 500;
}


/* Home Page New Sections */
.brand-track {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    padding: 2rem 0;
    opacity: 0.6;
}

.brand-item {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    filter: grayscale(1);
    transition: all 0.3s;
}

.brand-item:hover {
    filter: grayscale(0);
    opacity: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-val {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-box {
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 2rem;
    border: 1px solid var(--border-light);
    transition: all 0.4s;
}

.feature-box:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: var(--white);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.feature-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-box p {
    color: var(--text-light);
    line-height: 1.6;
}

.newsletter-card {
    background: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, #312e81 100%);
    border-radius: 2.5rem;
    padding: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 30rem;
    height: 30rem;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.newsletter-desc {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 400px;
}

.newsletter-form-container {
    flex-grow: 1;
    max-width: 500px;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 1.25rem;
    display: flex;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    color: var(--white);
    font-size: 1rem;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .btn-primary {
    background: var(--white);
    color: var(--primary);
    padding: 0 2rem;
    font-weight: 700;
}

.newsletter-form .btn-primary:hover {
    background: var(--bg-light);
    transform: scale(1.02);
}

@media (max-width: 991px) {
    .newsletter-card {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .brand-track {
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 2rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 2rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 700;
}

.user-name {
    font-weight: 700;
    color: var(--text-dark);
}

.user-role {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 1.25rem;
    border: 1px solid var(--border-light);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--text-dark);
}

.faq-question i {
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Blog Cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: var(--white);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.4s;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-img {
    height: 240px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 2rem;
}

.blog-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--text-dark);
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}