/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* === Premium Accent === */
.premium-accent {
    color: #FFD700;
    font-weight: 700;
    letter-spacing: 1.2px;
}

/* === Smooth transitions for cards and buttons === */
.product-card, .btn-checkout, .btn-primary, .btn-secondary {
    transition: box-shadow 0.4s cubic-bezier(0.23, 1, 0.320, 1), transform 0.3s cubic-bezier(0.23, 1, 0.320, 1), background 0.4s;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #222831;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9e4f0 100%);
    min-height: 100vh;
    transition: background 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Header & Navigation ===== */
.header {
    background: linear-gradient(180deg, rgba(34, 40, 49, 0.95) 0%, rgba(30, 35, 43, 0.92) 100%);
    color: white;
    padding: 12px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px) saturate(1.2);
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    gap: 30px;
    padding: 8px 0;
}

.logo-title {
    display: flex;
    align-items: center;
    gap: 12px;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.15));
    min-width: auto;
    padding-right: 15px;
    border-right: 2px solid rgba(255, 215, 0, 0.15);
}

.title-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-title h1 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin: 0;
    color: #FFD700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-title p {
    font-size: 11px;
    opacity: 0.9;
    margin: 3px 0 0 0;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

.header-content .nav {
    flex: 1;
    justify-content: center;
    margin: 0;
    gap: 8px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.08));
}

.logo h1 {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 0;
}

.logo p {
    font-size: 11px;
    opacity: 0.85;
    margin: 0;
}

.header-right {
    display: flex;
    gap: 10px;
    align-items: center;
    padding-left: 15px;
    border-left: 2px solid rgba(255, 215, 0, 0.15);
    min-width: auto;
}

.search-form {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.12);
    padding: 6px 8px;
    border-radius: 22px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.search-form:focus-within {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.1);
}

.search-form input {
    background: transparent;
    border: none;
    color: white;
    padding: 6px 10px;
    width: 160px;
    outline: none;
    font-size: 13px;
}

.search-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.search-form button {
    background: rgba(255, 215, 0, 0.15);
    border: none;
    color: #FFD700;
    padding: 4px 14px;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    font-weight: 600;
    font-size: 12px;
}

.search-form button:hover {
    background: rgba(255, 215, 0, 0.25);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2);
}

.cart-btn {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(33, 230, 193, 0.1) 100%);
    color: white;
    padding: 7px 16px;
    border-radius: 22px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 13px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.cart-btn:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(33, 230, 193, 0.15) 100%);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.15);
}

.cart-count {
    background: linear-gradient(135deg, #FFD700 0%, #21E6C1 100%);
    color: #222831;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.25);
}

.nav {
    display: flex;
    gap: 6px;
    align-items: center;
    border-top: none;
    padding-top: 0;
    flex-wrap: nowrap;
}

.nav-link {
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
    color: #FFD700;
}

.nav-link.active {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
    color: #FFD700;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.1);
}

/* ===== Dropdown Menu ===== */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    padding: 6px 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
    color: #FFD700;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: linear-gradient(135deg, rgba(34, 40, 49, 0.95) 0%, rgba(30, 35, 43, 0.95) 100%);
    min-width: 200px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    top: 100%;
    left: 0;
    margin-top: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.2s cubic-bezier(0.23, 1, 0.320, 1);
    font-size: 13px;
}

.dropdown-content a:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    padding-left: 20px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropdown-btn {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
    color: #FFD700;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 50%, rgba(240, 147, 251, 0.95) 100%), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><pattern id="dots" x="0" y="0" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%23fff" opacity="0.1"/></pattern></defs><rect width="1200" height="400" fill="url(%23dots)"/></svg>');
    color: white;
    padding: 100px 20px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    animation: heroGradient 15s ease infinite;
}

@keyframes heroGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 10px;
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* ===== Main Content ===== */
.main-content {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.sidebar {
    flex: 0 0 250px;
    background: white;
    padding: 24px;
    border-radius: 12px;
    height: fit-content;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

.sidebar h3 {
    font-size: 18px;
    margin-bottom: 24px;
    color: #667eea;
    font-weight: 700;
    border-bottom: 2px solid rgba(102, 126, 234, 0.2);
    padding-bottom: 12px;
}

.filter-group h4 {
    font-size: 13px;
    margin-bottom: 14px;
    color: #555;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-range {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-range label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    color: #555;
}

.price-range label:hover {
    color: #667eea;
    transform: translateX(4px);
}

.price-range input[type="radio"] {
    cursor: pointer;
    accent-color: #667eea;
}

.clear-filter {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 16px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 24px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    width: 100%;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.clear-filter:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(102, 126, 234, 0.4);
}

.products {
    flex: 1;
}

.products h2 {
    margin-bottom: 32px;
    color: #333;
    font-size: 28px;
    font-weight: 700;
    border-bottom: 3px solid #667eea;
    padding-bottom: 12px;
    display: inline-block;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

/* ===== Product Card ===== */
.product-card {
    background: rgba(255,255,255,0.85);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(32, 32, 64, 0.10), 0 1.5px 0 #FFD700 inset;
    transition: box-shadow 0.4s cubic-bezier(0.23, 1, 0.320, 1), transform 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 10;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-12px) scale(1.025);
    box-shadow: 0 20px 40px rgba(32, 32, 64, 0.18), 0 2px 0 #FFD700 inset;
}

.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea20 0%, #764ba220 100%);
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.08) rotate(0.5deg);
}

.product-info {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
}

.product-info h3 {
    font-size: 15px;
    margin-bottom: 8px;
    color: #222;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 600;
}

.category {
    font-size: 11px;
    color: #667eea;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(102, 126, 234, 0.1);
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    width: fit-content;
}

.description {
    font-size: 12px;
    color: #666;
    margin-bottom: 12px;
    flex-grow: 1;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #e0e5ff;
    gap: 10px;
}

.price {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.add-cart-form {
    margin: 0;
}

.add-cart-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 10px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.add-cart-btn:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5);
}

.add-cart-btn:active {
    transform: scale(0.95);
}

.no-products {
    text-align: center;
    padding: 80px 20px;
    color: #999;
}

.no-products p {
    font-size: 18px;
}

/* ===== Cart Page ===== */
.cart-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
    color: #999;
}

.empty-cart p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cart-wrapper {
    display: flex;
    gap: 30px;
}

.cart-items {
    flex: 2;
}

.cart-items table {
    width: 100%;
    border-collapse: collapse;
}

.cart-items th {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 14px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #667eea;
    color: #667eea;
}

.cart-items td {
    padding: 14px;
    border-bottom: 1px solid #eee;
}

.qty-input {
    width: 70px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s;
}

.qty-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.btn-remove {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.btn-remove:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.cart-summary {
    flex: 1;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fb 100%);
    padding: 24px;
    border-radius: 12px;
    height: fit-content;
    border: 1px solid rgba(102, 126, 234, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cart-summary h3 {
    margin-bottom: 20px;
    color: #333;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    color: #666;
}

.summary-divider {
    border-top: 1px solid #ddd;
    margin: 15px 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    border-top: 1px solid #ddd;
}

.total-amount {
    color: #667eea;
}

/* ===== Buttons ===== */
.btn-checkout,
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    margin-top: 18px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-checkout,
.btn-primary {
    background: linear-gradient(90deg, #FFD700 0%, #21E6C1 100%);
    color: #222831;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.18);
    border: none;
    letter-spacing: 1px;
    font-weight: 700;
}

.btn-checkout:hover,
.btn-primary:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 12px 36px rgba(255, 215, 0, 0.22);
}

.btn-checkout:active,
.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: #f0f0f0;
    color: #333;
    border: 2px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
    background: #e0e0e0;
    border-color: #667eea;
    transform: translateY(-2px);
}

/* ===== Forms ===== */
.form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s;
    background: #f9f9fb;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
    font-style: italic;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* ===== Payment Methods ===== */
.payment-methods {
    margin-bottom: 20px;
}

.payment-option {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-option:hover:not(.disabled) {
    border-color: #667eea;
    background: #f9f9f9;
}

.payment-option input[type="radio"] {
    margin-top: 3px;
}

.payment-title {
    display: block;
    font-weight: 600;
    color: #333;
}

.payment-desc {
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 3px;
}

.payment-option.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===== Checkout Page ===== */
.checkout-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.checkout-content h2 {
    margin-bottom: 30px;
    color: #333;
}

.checkout-wrapper {
    display: flex;
    gap: 30px;
}

.checkout-form {
    flex: 2;
}

.order-summary {
    flex: 1;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    height: fit-content;
    border: 1px solid #eee;
}

.order-summary h3 {
    margin-bottom: 15px;
    color: #333;
}

.summary-items {
    margin-bottom: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #eee;
}

/* ===== Order Success Page ===== */
.success-content {
    padding: 40px 0;
}

.success-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.success-icon {
    font-size: 60px;
    color: #27ae60;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #e8f5e9;
    margin-left: auto;
    margin-right: auto;
}

.success-card h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}

.order-details,
.order-items {
    text-align: left;
    margin: 30px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.order-details h3,
.order-items h3 {
    margin-bottom: 15px;
    color: #667eea;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.order-items table {
    width: 100%;
    border-collapse: collapse;
}

.order-items th {
    background: #f0f0f0;
    padding: 10px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #ddd;
}

.order-items td {
    padding: 10px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

/* ===== Info Box ===== */
.info-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
    border-left: 4px solid #667eea;
}

.info-box h4 {
    color: #667eea;
    margin-bottom: 10px;
}

.info-box ul {
    list-style-position: inside;
    font-size: 13px;
    color: #555;
}

.info-box li {
    margin-bottom: 5px;
}

.action-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
}

.contact-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 14px;
    color: #666;
}

/* ===== Page Content ===== */
.page-content {
    background: white;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.page-content h1 {
    color: #333;
    margin-bottom: 10px;
    font-size: 32px;
}

.page-content > p:first-of-type {
    color: #999;
    margin-bottom: 30px;
}

.info-section {
    margin-bottom: 30px;
}

.info-section h2 {
    color: #667eea;
    font-size: 22px;
    margin-bottom: 15px;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.info-section h3 {
    color: #333;
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.info-section ul {
    list-style-position: inside;
    color: #555;
}

.info-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.info-section p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-form-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fb 100%);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.15);
}

.contact-form-section h2 {
    color: #333;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
}

.contact-form-section p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info-section h2 {
    color: #333;
    margin-bottom: 5px;
    font-size: 24px;
    font-weight: 700;
}

.info-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.08) 100%);
    padding: 18px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.info-box:hover {
    transform: translateX(5px);
    border-left-color: #764ba2;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
}

.info-box h4 {
    color: #667eea;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 700;
}

.info-box p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.contact-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.contact-link:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Why Contact Section */
.why-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

.why-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fb 100%);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.why-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.why-card h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.why-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ===== Alerts ===== */
.alert {
    padding: 16px 18px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-weight: 500;
    border-left: 4px solid;
    background-color: #f9f9fb;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-error {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: #c62828;
    border-left-color: #c62828;
    box-shadow: 0 2px 8px rgba(198, 40, 40, 0.15);
}

.alert-success {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #2e7d32;
    border-left-color: #2e7d32;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.15);
}

/* ===== Footer ===== */
.footer {
    background: rgba(26, 26, 46, 0.92);
    color: white;
    margin-top: 80px;
    position: relative;
    backdrop-filter: blur(8px) saturate(1.1);
    border-top: 1.5px solid rgba(255, 215, 0, 0.10);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    padding: 50px 20px 30px;
    gap: 40px;
}

.footer-section h4 {
    margin-bottom: 18px;
    color: #667eea;
    font-size: 16px;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.footer-section a:hover {
    color: #667eea;
    transform: translateX(5px);
}

.footer-section p {
    color: #bbb;
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 13px;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }

    .sidebar {
        flex: 0 0 auto;
        position: relative;
        top: auto;
        margin-bottom: 30px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 18px;
    }

    .product-image {
        height: 220px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .checkout-wrapper,
    .cart-wrapper {
        flex-direction: column;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .search-form {
        display: none;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .nav {
        width: 100%;
        flex-wrap: wrap;
        padding-top: 10px;
        gap: 15px;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero-content h2 {
        font-size: 32px;
    }

    .page-content {
        padding: 20px;
    }

    .action-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }

    .header-right {
        gap: 10px;
        flex-wrap: wrap;
    }

    .cart-btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    .nav {
        gap: 8px;
    }

    .nav-link {
        font-size: 12px;
    }

    .hero {
        padding: 40px 15px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .product-info {
        padding: 12px;
    }

    .product-info h3 {
        font-size: 13px;
    }

    .price {
        font-size: 16px;
    }

    .add-cart-btn {
        padding: 8px 10px;
        font-size: 11px;
    }
}

    .payment-option {
        flex-direction: column;
    }
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card,
.info-section {
    animation: fadeIn 0.3s ease-out;
}
