/**
 * JEWEL NIDHI - Enhanced Page Styles
 * Premium design framework for all pages
 */

/* ============================================
   PAGE HEADERS & HERO SECTIONS
   ============================================ */

/* About Page Hero */
.about-hero,
.contact-hero,
.page-header {
    position: relative;
    padding: 12rem 2rem 6rem;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1410 100%);
    overflow: hidden;
}

.about-hero::before,
.contact-hero::before,
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-hero-content,
.contact-hero-content,
.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-content h1,
.contact-hero-content h1,
.page-header-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-content p,
.contact-hero-content p,
.page-header-content p {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 2rem;
}

/* ============================================
   STORY SECTION (About Page)
   ============================================ */

.story-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.story-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
    pointer-events: none;
}

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

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

.story-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.story-content p {
    color: #aaa;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1410 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
}

.stat-number {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: #888;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   VISION & MISSION
   ============================================ */

.vision-mission {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.vm-card {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.vm-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.1);
}

.vm-icon {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 16px;
}

.vm-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.vm-card p {
    color: #aaa;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ============================================
   WHY CHOOSE US / FEATURES
   ============================================ */

.why-choose-us {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1410 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 2rem auto 0;
}

.feature-card-large {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card-large:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

.feature-icon {
    margin: 0 auto 1.5rem;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
}

.feature-card-large h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.feature-card-large p {
    color: #aaa;
    line-height: 1.7;
}

/* ============================================
   STORE LOCATION
   ============================================ */

.store-location {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.store-content {
    max-width: 700px;
    margin: 0 auto;
}

.store-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.store-content p {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.store-address,
.store-hours {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-align: left;
    margin-bottom: 1.5rem;
}

.store-address strong,
.store-hours strong {
    color: #d4af37;
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.store-address p,
.store-hours p {
    color: #aaa;
    margin: 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
}

.contact-info-panel h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.contact-info-panel>p {
    color: #aaa;
    margin-bottom: 2.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.method-icon {
    flex-shrink: 0;
}

.method-content h4 {
    color: #d4af37;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.method-content p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-section {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-section h4 {
    color: #fff;
    margin-bottom: 1rem;
}

.social-links-large {
    display: flex;
    gap: 1rem;
}

.social-link-large {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #aaa;
    transition: all 0.3s ease;
}

.social-link-large:hover {
    background: #d4af37;
    border-color: #d4af37;
    color: #000;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
}

.contact-form-panel h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 2rem;
}

.contact-form-large .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.contact-form-large label {
    display: block;
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form-large input,
.contact-form-large select,
.contact-form-large textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form-large input:focus,
.contact-form-large select:focus,
.contact-form-large textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.submit-btn-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* Quick Contact */
.quick-contact {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1410 100%);
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-contact-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.quick-contact-btn.whatsapp:hover {
    border-color: #25D366;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.2);
}

.quick-contact-btn span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */

.all-products-section {
    padding: 4rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.products-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-chip {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: #aaa;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-chip:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    color: #fff;
}

.filter-chip.active {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-color: #d4af37;
    color: #000;
    font-weight: 600;
}

.sort-dropdown select {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-dropdown select:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.08);
}

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

.page-btn {
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #aaa;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    color: #fff;
}

.page-btn.active {
    background: #d4af37;
    border-color: #d4af37;
    color: #000;
}

.page-dots {
    color: #666;
}

/* ============================================
   AUTH PAGES (Login/Register)
   ============================================ */

.auth-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1410 100%);
}

.auth-section {
    padding: 8rem 2rem 4rem;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.auth-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.logo-icon.large {
    font-size: 3rem;
    color: #d4af37;
    display: block;
    margin-bottom: 1rem;
}

.auth-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: #888;
}

.auth-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.auth-form label {
    display: block;
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.auth-form .input-with-icon {
    position: relative;
}

.auth-form .input-with-icon svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
}

.auth-form .input-with-icon input {
    padding-left: 3rem;
}

.auth-form input,
.auth-form select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.auth-form input:focus,
.auth-form select:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.toggle-password:hover {
    color: #d4af37;
}

.password-hint {
    display: block;
    color: #666;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

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

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #aaa;
    font-size: 0.9rem;
    cursor: pointer;
}

.forgot-password {
    color: #d4af37;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #f4d03f;
}

.auth-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}

.auth-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.auth-divider span {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    padding: 0 1rem;
    color: #666;
    font-size: 0.9rem;
}

.social-auth {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #aaa;
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
}

.checkbox-label a {
    color: #d4af37;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.auth-footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-footer p {
    color: #888;
}

.auth-footer a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    color: #f4d03f;
}

/* ============================================
   TRACKING & ORDER PAGES
   ============================================ */

.tracking-result {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-order-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.result-order-info p {
    color: #888;
    font-size: 0.9rem;
}

.result-status {
    text-align: right;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(111, 66, 193, 0.1);
    border: 1px solid rgba(111, 66, 193, 0.3);
    color: #6f42c1;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 20px;
    margin-bottom: 0.5rem;
}

.result-status p {
    color: #888;
    font-size: 0.85rem;
}

.tracking-timeline {
    padding: 1.5rem 0;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 0;
    position: relative;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 50px;
    width: 2px;
    height: calc(100% - 30px);
    background: rgba(255, 255, 255, 0.1);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-item.completed,
.timeline-item.active {
    opacity: 1;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.timeline-item.completed .timeline-icon {
    background: #d4af37;
    border-color: #d4af37;
    color: #000;
}

.timeline-item.active .timeline-icon {
    background: rgba(212, 175, 55, 0.2);
    border-color: #d4af37;
    color: #d4af37;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
}

.timeline-content h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.timeline-content p {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.timeline-date {
    display: block;
    color: #666;
    font-size: 0.75rem;
}

.tracking-number {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: #888;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

.shipping-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-card {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
}

.detail-card h4 {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.detail-card p {
    color: #888;
    font-size: 0.85rem;
    line-height: 1.6;
}

.carrier-link {
    color: #d4af37;
    font-size: 0.8rem;
}

.tracking-support {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-top: 1.5rem;
}

.tracking-support p {
    color: #888;
}

.support-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #25D366;
    color: #fff;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s;
}

.support-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .category-layout {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .account-container {
        grid-template-columns: 1fr;
    }

    .account-sidebar {
        position: static;
    }

    .order-content-grid {
        grid-template-columns: 1fr;
    }

    .shipping-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
    }

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

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
    }

    .order-progress {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .progress-line {
        display: none;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .about-hero,
    .contact-hero,
    .page-header {
        padding: 8rem 1.5rem 4rem;
    }

    .about-hero-content h1,
    .contact-hero-content h1,
    .page-header-content h1 {
        font-size: 2rem;
    }

    .filters-sidebar {
        grid-template-columns: 1fr;
    }

    .products-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .products-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .auth-form .form-row,
    .contact-form-large .form-row,
    .profile-form .form-row {
        grid-template-columns: 1fr;
    }

    .social-auth {
        grid-template-columns: 1fr;
    }

    .order-header-card {
        flex-direction: column;
        gap: 1rem;
    }

    .order-header-right {
        text-align: left;
    }

    .tracking-support {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .result-header {
        flex-direction: column;
        gap: 1rem;
    }

    .result-status {
        text-align: left;
    }

    .auth-card {
        padding: 2rem;
    }

    .contact-form-panel,
    .contact-info-panel {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .category-hero {
        height: 40vh;
        min-height: 300px;
    }

    .category-hero-content h1 {
        font-size: 2rem;
    }

    .gift-hamper-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .success-actions {
        gap: 0.5rem;
    }

    .success-btn {
        padding: 0.875rem;
    }

    .delivery-estimate {
        flex-direction: column;
        text-align: center;
    }

    .auth-header h1 {
        font-size: 1.75rem;
    }

    .story-content h2,
    .store-content h2 {
        font-size: 2rem;
    }
}

/* ============================================
   CATEGORY HERO SECTIONS - PREMIUM DESIGN
   ============================================ */

.category-hero {
    position: relative;
    height: 75vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.category-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.category-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 20, 16, 0.8) 100%);
    z-index: 2;
}

.category-hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
}

.category-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.category-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
    margin-bottom: 1.5rem;
}

.category-hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.category-hero-content p {
    font-size: 1.25rem;
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

/* Category Layout & Filters */
.category-content {
    padding: 4rem 2rem 8rem;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.category-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
}

/* Filters Sidebar */
.filters-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    align-self: start;
}

.filter-section {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-section:last-child {
    border-bottom: none;
}

.filter-section h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1.25rem;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-option:hover {
    color: #d4af37;
}

.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 0.75rem;
    accent-color: #d4af37;
    cursor: pointer;
}

.filter-option span {
    color: #ccc;
    font-size: 0.9rem;
}

.filter-option:hover span {
    color: #d4af37;
}

/* Category Products */
.category-products {
    flex: 1;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #fff;
}

.sort-dropdown {
    position: relative;
}

.sort-dropdown select {
    padding: 0.75rem 2.5rem 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ccc;
    font-size: 0.9rem;
    cursor: pointer;
    appearance: none;
    transition: all 0.3s ease;
}

.sort-dropdown select:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.sort-dropdown select:focus {
    outline: none;
    border-color: #d4af37;
}

.sort-dropdown::after {
    content: '▼';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #d4af37;
    font-size: 0.7rem;
    pointer-events: none;
}

/* ============================================
   GIFT PAGE ENHANCEMENTS
   ============================================ */

/* Gift Hero */
.gift-hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.gift-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 20, 16, 0.85) 100%);
}

.gift-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.gift-hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #fff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gift-hero-content p {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 2.5rem;
}

.gift-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gift-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.5);
}

/* Why Gift Section */
.why-gift {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1410 100%);
}

.why-gift-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 2rem auto 0;
}

.why-gift-item {
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-gift-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

.why-gift-icon {
    margin: 0 auto 1.5rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.why-gift-item:hover .why-gift-icon {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1);
}

.why-gift-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.why-gift-item p {
    color: #aaa;
    line-height: 1.7;
}

/* Gift Hampers Section */
.gift-hampers-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gift-hampers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.gift-hamper-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gift-hamper-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.2);
}

.gift-hamper-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 3;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gift-hamper-badge.featured {
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    color: #fff;
}

.gift-hamper-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.gift-hamper-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gift-hamper-card:hover .gift-hamper-image img {
    transform: scale(1.1);
}

.gift-hamper-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

.gift-hamper-content {
    padding: 2.5rem;
}

.gift-hamper-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.gift-hamper-desc {
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.gift-hamper-items {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

.gift-hamper-items li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ccc;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.gift-hamper-items li:last-child {
    border-bottom: none;
}

.gift-hamper-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-section {
    display: flex;
    flex-direction: column;
}

.gift-hamper-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
}

.price-note {
    font-size: 0.85rem;
    color: #666;
}

.gift-hamper-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gift-hamper-btn:hover {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-color: #d4af37;
    color: #000;
    transform: translateX(5px);
}

/* Custom Gift Section */
.custom-gift {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1410 100%);
}

.custom-gift-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
}

.custom-gift-icon {
    margin: 0 auto 2rem;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
}

.custom-gift-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.custom-gift-content p {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.custom-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
}

.custom-gift-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: #25D366;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.custom-gift-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

/* ============================================
   CATEGORY PAGE ENHANCEMENTS
   ============================================ */

.all-categories {
    padding: 4rem 2rem 6rem;
    max-width: 1600px;
    margin: 0 auto;
}

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

.category-card-large {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-card-large:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.2);
}

.category-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.category-card-large:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

.category-content {
    padding: 2.5rem;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.category-count {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #d4af37;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: 20px;
}

.category-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.category-content p {
    color: #aaa;
    margin-bottom: 1.5rem;
}

.category-subcategories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.category-subcategories span {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 0.85rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.category-card-large:hover .category-subcategories span {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.2);
    color: #d4af37;
}

.category-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #d4af37;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.category-card-large:hover .category-cta {
    gap: 1rem;
}

/* Enhanced Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #d4af37;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.75rem;
    color: #fff;
    margin-bottom: 1rem;
}

.section-header p {
    color: #aaa;
    font-size: 1.1rem;
}

/* ============================================
   RESPONSIVE - GIFT & CATEGORY PAGES
   ============================================ */

@media (max-width: 992px) {
    .why-gift-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gift-hampers-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gift-hero {
        height: 70vh;
        min-height: 500px;
    }

    .gift-hero-content h1 {
        font-size: 2.5rem;
    }

    .why-gift-grid {
        grid-template-columns: 1fr;
    }

    .custom-gift-content {
        padding: 3rem 2rem;
    }

    .custom-benefits {
        flex-direction: column;
        align-items: flex-start;
    }

    .categories-grid-large {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .gift-hamper-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .custom-gift-btn,
    .gift-hero-cta {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   ORDER SUCCESS PAGE
   ============================================ */
.order-success-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1410 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.success-container {
    max-width: 600px;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.success-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4d03f, #d4af37);
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    color: #d4af37;
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.success-container h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.success-message {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.order-info-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.order-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.order-info-row:last-child {
    border-bottom: none;
}

.order-info-row span {
    color: #888;
    font-size: 0.95rem;
}

.order-info-row strong {
    color: #fff;
    font-weight: 500;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.success-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.success-btn.primary {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
}

.success-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.success-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.success-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #d4af37;
    color: #d4af37;
}

.success-btn.outline {
    background: transparent;
    color: #aaa;
    font-weight: 500;
}

.success-btn.outline:hover {
    color: #fff;
}

.whatsApp-cta {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.whatsApp-cta p {
    color: #888;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.whatsapp-btn-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #25D366;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.75rem;
    border-radius: 8px;
    background: rgba(37, 211, 102, 0.05);
}

.whatsapp-btn-large:hover {
    background: rgba(37, 211, 102, 0.1);
    transform: scale(1.02);
}

.delivery-estimate {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 12px;
    border: 1px dashed rgba(212, 175, 55, 0.3);
    text-align: left;
}

.delivery-estimate svg {
    flex-shrink: 0;
}

.delivery-estimate strong {
    display: block;
    color: #d4af37;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.delivery-estimate p {
    color: #fff;
    margin: 0;
    font-size: 0.95rem;
}

/* Success Animation Circle */
.success-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
    display: flex;
    justify-content: center;
    padding-top: 10vh;
    opacity: 0;
    animation: fadeOutSuccess 2s ease forwards 1s;
}

.success-circle {
    width: 100px;
    height: 100px;
    background: rgba(10, 10, 10, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #d4af37;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    transform: scale(0);
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scaleIn {
    to {
        transform: scale(1);
    }
}

@keyframes fadeOutSuccess {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* ============================================
   ORDER TRACKING PAGE
   ============================================ */

.order-tracking-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1410 100%);
    padding-top: 80px;
    /* Navbar height */
}

/* Tracking Section */
.tracking-section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.tracking-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Track Form Card */
.track-form-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.track-form-card h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.track-form-card p {
    color: #888;
    margin-bottom: 2rem;
}

.track-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.track-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.track-form label {
    font-size: 0.9rem;
    color: #aaa;
    margin-left: 0.5rem;
}

.track-form .input-with-icon {
    position: relative;
}

.track-form .input-with-icon svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    transition: color 0.3s ease;
}

.track-form input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.track-form input:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.track-form input:focus+svg,
.track-form .input-with-icon:focus-within svg {
    color: #d4af37;
}

.track-btn {
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.track-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

/* Tracking Result */
.tracking-result {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    animation: slideUp 0.5s ease-out forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.result-order-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.result-order-info p {
    color: #888;
}

.result-status {
    text-align: right;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.result-status p {
    color: #fff;
    font-size: 0.95rem;
}

/* Timeline */
.tracking-timeline {
    position: relative;
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 27px;
    /* Matches icon center */
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    position: relative;
    padding-bottom: 3rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(20, 20, 20, 1);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    z-index: 2;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.timeline-item.completed .timeline-icon {
    background: #d4af37;
    border-color: #d4af37;
    color: #000;
}

.timeline-item.active .timeline-icon {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    color: #d4af37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.timeline-content {
    padding-top: 0.5rem;
    flex: 1;
}

.timeline-content h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-item.completed h4,
.timeline-item.active h4 {
    color: #d4af37;
}

.timeline-content p {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.timeline-date {
    display: block;
    color: #666;
    font-size: 0.85rem;
}

.tracking-number {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: #fff;
    font-size: 0.85rem;
    font-family: monospace;
}

/* Shipping Details */
.shipping-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.detail-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
}

.detail-card h4 {
    color: #d4af37;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.detail-card p {
    color: #aaa;
    line-height: 1.6;
    font-size: 0.95rem;
}

.detail-card strong {
    color: #fff;
}

.carrier-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: #d4af37;
    text-decoration: underline;
    font-size: 0.9rem;
}

.carrier-link:hover {
    color: #fff;
}

/* Tracking Support */
.tracking-support {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.tracking-support p {
    color: #888;
    margin-bottom: 1rem;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 8px;
    color: #25D366;
    text-decoration: none;
    font-weight: 500;
    background: rgba(37, 211, 102, 0.05);
    transition: all 0.3s ease;
}

.support-btn:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25D366;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .result-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .result-status {
        text-align: left;
    }

    .shipping-details {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MY ACCOUNT PAGE
   ============================================ */

.account-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1410 100%);
    padding-top: 80px;
    /* Navbar height */
}

.account-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

/* Sidebar */
.account-sidebar {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.account-user {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.user-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    font-family: 'Cormorant Garamond', serif;
}

.user-info h3 {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.user-info p {
    color: #888;
    font-size: 0.9rem;
}

.account-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.account-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: #aaa;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.account-nav-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.account-nav-item.active {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    font-weight: 500;
}

.account-nav-item svg {
    flex-shrink: 0;
}

.logout-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-top: 2rem;
    background: rgba(255, 0, 0, 0.1);
    color: #ff4444;
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.logout-btn:hover {
    background: rgba(255, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Main Content Area */
.account-main {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    min-height: 600px;
}

.account-tab {
    display: none;
    animation: fadeIn 0.5s ease;
}

.account-tab.active {
    display: block;
}

.account-tab h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

/* Dashboard Stats */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.dashboard-stat {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-value {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.stat-label {
    color: #aaa;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.recent-orders-section h3 {
    color: #fff;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.order-item-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.order-item-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
}

.order-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.order-id {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

.order-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    width: fit-content;
}

.order-status.Pending {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.order-status.Processing {
    background: rgba(33, 150, 243, 0.1);
    color: #2196f3;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.order-status.Shipped {
    background: rgba(156, 39, 176, 0.1);
    color: #9c27b0;
    border: 1px solid rgba(156, 39, 176, 0.3);
}

.order-status.Delivered {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.order-details {
    text-align: right;
}

.order-details p {
    color: #aaa;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.order-total {
    color: #d4af37 !important;
    font-weight: 600;
    font-size: 1.1rem !important;
}

.view-order-btn {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.view-order-btn:hover {
    background: #fff;
    color: #000;
}

.view-all-link {
    display: inline-block;
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: #fff;
}

/* Addresses */
.addresses-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.address-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
}

.address-card.default {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
}

.address-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.address-type {
    color: #fff;
    font-weight: 600;
}

.address-default {
    background: #d4af37;
    color: #000;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.address-text {
    color: #aaa;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.address-actions {
    display: flex;
    gap: 1rem;
}

.btn-text {
    background: none;
    border: none;
    color: #d4af37;
    cursor: pointer;
    padding: 0;
    font-size: 0.9rem;
}

.btn-text:hover {
    text-decoration: underline;
}

.btn-text.delete {
    color: #ff4444;
}

.add-address-btn {
    width: 100%;
    padding: 1rem;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #aaa;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.add-address-btn:hover {
    border-color: #d4af37;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
}

/* Profile Form */
.profile-form {
    max-width: 600px;
}

.profile-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.profile-form label {
    display: block;
    color: #aaa;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.profile-form input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.profile-form input:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.08);
}

.save-profile-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.save-profile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.empty-state {
    text-align: center;
    color: #666;
    padding: 2rem;
    font-style: italic;
}

@media (max-width: 900px) {
    .account-container {
        grid-template-columns: 1fr;
    }

    .account-sidebar {
        position: static;
        margin-bottom: 2rem;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .addresses-list {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ORDER DETAILS PAGE
   ============================================ */

.order-details-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1410 100%);
    padding-top: 80px;
    /* Navbar height */
}

/* Section & Container */
.order-details-section {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.order-details-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Breadcrumb */
.breadcrumb {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #d4af37;
}

.breadcrumb span {
    margin: 0 0.5rem;
    color: #666;
}

.breadcrumb .current {
    color: #d4af37;
    font-weight: 500;
}

/* Order Header Card */
.order-header-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.order-header-left h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.order-date {
    color: #888;
    font-size: 0.95rem;
}

.order-header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.order-status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.order-status-badge.Pending {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.order-status-badge.Processing {
    background: rgba(33, 150, 243, 0.1);
    color: #2196f3;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

.order-status-badge.Shipped {
    background: rgba(156, 39, 176, 0.1);
    color: #9c27b0;
    border: 1px solid rgba(156, 39, 176, 0.3);
}

.order-status-badge.Delivered {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.track-order-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.track-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

/* Order Progress */
.order-progress {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow-x: auto;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    min-width: 100px;
}

.step-icon {
    width: 48px;
    height: 48px;
    background: #1a1410;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    color: #666;
    transition: all 0.3s ease;
}

.progress-step.completed .step-icon {
    background: #d4af37;
    border-color: #d4af37;
    color: #000;
}

.step-label {
    color: #aaa;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.progress-step.completed .step-label {
    color: #fff;
}

.step-date {
    color: #666;
    font-size: 0.8rem;
}

.progress-line {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    margin: 0 1rem;
    position: relative;
    top: -24px;
    z-index: 1;
}

.progress-line.completed {
    background: #d4af37;
}

/* Order Content Grid */
.order-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

/* Order Items */
.order-items-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
}

.order-items-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
}

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

.order-item-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.order-item-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

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

.item-details {
    flex: 1;
}

.item-details h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.item-details p {
    color: #888;
    font-size: 0.9rem;
}

.item-price {
    font-weight: 600;
    color: #d4af37;
    font-size: 1.1rem;
}

/* Order Summary */
.order-summary {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    color: #aaa;
    font-size: 0.95rem;
}

.summary-row.total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
}

.summary-row.total span:last-child {
    color: #d4af37;
}

/* Info Sidebar */
.order-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
}

.info-card h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.address-content p,
.payment-content {
    color: #aaa;
    line-height: 1.6;
    font-size: 0.95rem;
}

.address-content strong {
    color: #fff;
}

.payment-type {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
}

/* Actions */
.info-card.actions {
    position: sticky;
    top: 100px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.8rem;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.95rem;
}

.action-btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.action-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #d4af37;
    color: #d4af37;
}

.action-btn.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.action-btn.whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .order-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .account-container {
        grid-template-columns: 1fr;
    }

    .account-sidebar {
        position: static;
        margin-bottom: 2rem;
    }

    .order-header-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-progress {
        padding: 2rem 1rem;
    }

    .step-label {
        font-size: 0.8rem;
    }
}

/* ============================================
   PRODUCT DETAILS PAGE
   ============================================ */

.product-details-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1410 100%);
    padding-top: 80px;
    /* Navbar height */
}

.product-details-section {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.product-details-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Breadcrumb Styles - Reusing existing or customizing */
.product-details-page .breadcrumb {
    margin-bottom: 2rem;
}

/* Main Grid */
.product-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    width: 100%;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

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

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

.main-image .product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.product-badge.new {
    background: #d4af37;
    color: #000;
}

.product-badge.bestseller {
    background: #f4d03f;
    color: #000;
}

/* Info Column */
.product-info-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
}

.product-category-tag {
    color: #d4af37;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}

.product-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.price-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 2rem;
    color: #d4af37;
    font-weight: 600;
}

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

.stars {
    color: #f4d03f;
    letter-spacing: 2px;
}

.rating .count {
    color: #666;
    font-size: 0.9rem;
}

/* Description */
.product-description p {
    color: #aaa;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Specs */
.product-specs {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.spec-label {
    color: #666;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-value {
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
}

/* Actions */
.product-actions {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
}

.quantity-selector {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.25rem;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

#qty-input {
    width: 50px;
    text-align: center;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    appearance: none;
}

.action-buttons-row {
    flex: 1;
    display: flex;
    gap: 1rem;
}

.add-to-cart-btn-large {
    flex: 2;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.add-to-cart-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.whatsapp-btn-product {
    flex: 1;
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-btn-product:hover {
    background: rgba(37, 211, 102, 0.2);
    transform: translateY(-2px);
}

/* Delivery Info */
.delivery-info {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    color: #aaa;
    font-size: 0.9rem;
}

.info-item svg {
    color: #d4af37;
}

/* View Details Button in Product Cards */
.view-details-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.view-details-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.product-overlay {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
}

@media (max-width: 900px) {
    .product-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-gallery {
        position: static;
    }

    .product-header h1 {
        font-size: 2rem;
    }

    .price {
        font-size: 1.5rem;
    }

    .product-specs {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .product-actions {
        flex-direction: column;
    }

    .action-buttons-row {
        width: 100%;
    }

    .delivery-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-item {
        flex-direction: row;
        text-align: left;
    }
}

/* ============================================
   RESPONSIVE OVERRIDES
   ============================================ */

@media (max-width: 992px) {
    .category-hero {
        height: 50vh !important;
        min-height: 400px !important;
    }

    .category-hero-content h1 {
        font-size: 3rem !important;
    }
}

@media (max-width: 576px) {
    .category-hero {
        height: 40vh !important;
        min-height: 300px !important;
    }

    .category-hero-content h1 {
        font-size: 2rem !important;
    }

    .category-tag {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
}

/* Fix for Category Page Layout Overlap */
@media (max-width: 1200px) {
    .category-page .category-layout {
        display: block !important;
        /* Stack vertically */
    }

    .category-page .filters-sidebar {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        margin-bottom: 2rem;
        background: #0a0a0a;
        /* Ensure background isn't transparent */
        z-index: 10;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 1rem;
    }

    .category-page .category-products {
        width: 100%;
    }
}