/* Subpage Styles */

/* Shop Layout */
.shop-section {
    padding: 4rem 0;
    min-height: 80vh;
}

.shop-header {
    margin-bottom: 3rem;
    text-align: center;
}

.shop-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin-bottom: 1rem;
}

.shop-subtitle {
    color: var(--color-muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

/* Product Card */
.product-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative; /* Needed for badge positioning if we want it outside container */
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px -10px rgba(250, 204, 21, 0.15);
}

.product-image-container {
    position: relative;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
    background-color: transparent;
    overflow: hidden;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    transition: transform 0.5s ease;
}

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

.badge-coming-soon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--color-primary);
    color: var(--color-background);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

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

.product-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-foreground);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin-top: auto;
    padding-top: 1rem;
}

.product-actions {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
}

.btn-add-cart {
    background-color: var(--color-primary);
    color: var(--color-background);
    border: none;
    font-weight: 600;
    border-radius: var(--radius-md);
    padding: 0.75rem;
    transition: background-color 0.2s;
    width: 100%;
    /* Ensure full width on mobile */
}

.btn-add-cart:disabled {
    background-color: var(--color-muted);
    color: var(--color-muted-foreground);
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-add-cart:disabled:hover {
    background-color: var(--color-muted);
}

.continue-shopping{
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-md);
    font-weight: 600;
}

@media (min-width: 640px) {
    .btn-add-cart {
        width: auto;
    }
}

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

.btn-view-details {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: var(--color-foreground);
}

.btn-view-details:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}


/* ========================================================================== */
/* UPDATED PRODUCT DETAIL STYLES                                              */
/* ========================================================================== */

.product-detail-section {
    padding: 2rem 0 4rem;
    min-height: 80vh;
}

/* Image Badge */
.purity-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: rgba(20, 20, 20, 0.9);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

/* Header & Stock Status */
.product-header {
    border-bottom: none;
    padding-bottom: 0.5rem;
}

.product-badge {
    color: var(--color-muted-foreground);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.product-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.product-price-large {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.stock-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4ade80;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: #4ade80;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.4);
}

/* Trust Badges - Updated Layout */
.product-trust-badges {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-top: none;
    padding-top: 0;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.trust-item svg {
    color: var(--color-primary);
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.1rem;
}

.trust-item strong {
    display: block;
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.trust-desc {
    display: block;
    color: var(--color-muted-foreground);
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Product Details Grid Layout */
.product-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

@media (min-width: 1024px) {
    .product-details-grid {
        grid-template-columns: 3fr 2fr;
        align-items: start;
    }
}

.detail-section {
    margin-bottom: 3rem;
}

.detail-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

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

.icon-title svg {
    color: var(--color-primary);
}

.detail-text {
    color: var(--color-muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 1rem;
}

/* Profile & Findings Cards */
.profile-card, .findings-card {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 1.5rem;
}

.profile-item, .finding-item {
    margin-bottom: 1.5rem;
}

.profile-label, .finding-title {
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.profile-value, .finding-desc {
    color: var(--color-muted-foreground);
    font-size: 0.95rem;
}

.finding-source {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-family: monospace;
    color: var(--color-muted-foreground);
    opacity: 0.8;
}

/* Right Column Cards (COA & Specs) */
.spec-card {
    background-color: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 1.25rem;
}

.spec-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
}

.spec-row:last-child {
    margin-bottom: 0;
}

.spec-label {
    color: var(--color-muted-foreground);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.spec-value {
    color: #ffffff;
    font-family: monospace;
    font-weight: 600;
}

.spec-value.highlight {
    color: #ffffff;
}

.spec-value.success {
    color: #4ade80;
}

/* COA Card */
.coa-card {
    background-color: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.coa-preview-container {
    padding: 1rem;
    background-color: #ffffff;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.coa-preview-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.9;
}

.coa-info-bar {
    padding: 0.75rem 1rem;
    background-color: rgba(30, 30, 30, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.batch-details {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    font-family: monospace;
    font-size: 0.7rem;
}

.batch-id {
    color: #ffffff;
    font-weight: 700;
}

.batch-status-text {
    color: #4ade80;
}

.btn-view-pdf-small {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: none;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.7rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-view-pdf-small:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-add-cart-large {
    width: 100%;
    background-color: var(--color-primary);
    color: var(--color-background);
    border: none;
    font-weight: 600;
    padding: 0.875rem;
    border-radius: var(--radius-md);
    transition: filter 0.2s;
}

.btn-add-cart-large:hover {
    filter: brightness(1.1);
}


/* ========================================================================== */
/* CHECKOUT PAGE STYLES                                                       */
/* ========================================================================== */

.checkout-section {
    padding: 3rem 0 5rem;
    min-height: 80vh;
}

.checkout-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin-bottom: 2rem;
}

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

@media (min-width: 1024px) {
    .checkout-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 3rem;
        align-items: start;
    }
}

.checkout-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-foreground);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Forms */
.form-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
}

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

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

.span-2 {
    grid-column: span 2;
}

@media (max-width: 640px) {
    .span-2 {
        grid-column: span 1;
    }
}

.form-group label {
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--color-input);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    color: var(--color-foreground);
    font-size: 0.95rem;
    transition: border-color 0.2s;
    width: 100%;
    /* Ensure input takes full width of container */
    max-width: 100%;
    /* Prevent it from overflowing */
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
    margin-bottom: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: rgba(0, 0, 0, 0.4);
}

/* Payment Placeholder */
.payment-placeholder {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--radius-md);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    text-align: center;
    align-items: center;
    justify-content: center;
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4ade80;
    /* Green-400 */
    font-size: 0.875rem;
    font-weight: 500;
}

.btn-checkout {
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    padding: 1.25rem 1rem;
    background-color: var(--color-primary);
    color: var(--color-background);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    width: 100%;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-checkout:hover {
    filter: brightness(1.1);
}

/* Order Summary */
.order-summary {
    position: sticky;
    top: 6rem;
}

.cart-items {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
    padding-right: 0.5rem;
}

.cart-items::-webkit-scrollbar {
    width: 6px;
}

.cart-items::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

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

.cart-item:last-child {
    border-bottom: none;
}

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

.cart-item-name {
    font-weight: 600;
    color: var(--color-foreground);
    font-size: 0.95rem;
}

.cart-item-qty {
    font-size: 0.8rem;
    color: var(--color-muted-foreground);
}

.cart-item-price {
    font-weight: 600;
    color: var(--color-foreground);
}

.summary-totals {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    color: var(--color-muted-foreground);
    font-size: 0.95rem;
}

.total-final {
    color: var(--color-foreground);
    font-weight: 700;
    font-size: 1.25rem;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.empty-cart-message {
    text-align: center;
    color: var(--color-muted-foreground);
    padding: 2rem 0;
    font-style: italic;
}

/* ========================================================================== */
/* AUTHENTICATION PAGES (SIGN IN / SIGN UP)                                   */
/* ========================================================================== */

.auth-section {
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    max-width: 480px;
    width: 100%;
}

.auth-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-foreground);
    text-align: center;
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    color: var(--color-muted-foreground);
    text-align: center;
    margin-bottom: 2rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.forgot-password-link {
    font-size: 0.8rem;
    color: var(--color-primary);
    transition: opacity 0.2s;
}

.forgot-password-link:hover {
    opacity: 0.8;
}

.btn-auth {
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.auth-footer {
    margin-top: 2rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-muted-foreground);
    font-size: 0.9rem;
}

.link-primary {
    color: var(--color-primary);
    font-weight: 500;
}

.link-primary:hover {
    text-decoration: underline;
}

/* ========================================================================== */
/* CART PAGE                                                                  */
/* ========================================================================== */

.cart-section {
    padding: 3rem 0 5rem;
    min-height: 80vh;
}

.cart-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin-bottom: 2rem;
}

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

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

/* Cart List */
.cart-header-row {
    display: none;
    /* Hidden on mobile */
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-muted-foreground);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .cart-header-row {
        display: grid;
    }
}

.cart-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .cart-row {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        align-items: center;
    }
}

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

.cart-product-img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

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

.cart-product-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cart-product-name {
    font-weight: 600;
    color: var(--color-foreground);
    font-size: 1rem;
}

.btn-remove {
    background: none;
    border: none;
    color: var(--color-muted-foreground);
    font-size: 0.85rem;
    cursor: pointer;
    text-align: left;
    padding: 0;
    margin-top: 0.25rem;
    text-decoration: underline;
}

.btn-remove:hover {
    color: #ef4444;
}

.col-price {
    font-weight: 600;
    color: var(--color-foreground);
    display: none;
    /* Hide individual price on mobile as total shows it */
}

@media (min-width: 768px) {
    .col-price {
        display: block;
    }
}

.col-quantity {
    display: flex;
    align-items: center;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-input);
    border-radius: var(--radius-md);
    height: 2.5rem;
}

.qty-btn {
    width: 2rem;
    height: 100%;
    background: transparent;
    border: none;
    color: var(--color-muted-foreground);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.qty-btn:hover {
    color: var(--color-foreground);
    background-color: rgba(255, 255, 255, 0.05);
}

.qty-input-small {
    width: 2.5rem;
    height: 100%;
    background: transparent;
    border: none;
    color: var(--color-foreground);
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    -moz-appearance: textfield;
}

.col-total {
    color: var(--color-foreground);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

@media (min-width: 768px) {
    .col-total {
        justify-content: flex-start;
        width: auto;
    }
    
    .col-total::before {
        content: none;
    }
}

.col-total::before {
    content: "Total:";
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-muted-foreground);
    margin-right: 0.5rem;
}

@media (min-width: 768px) {
    .col-total::before {
        display: none;
    }
}

/* Cart Summary Sidebar */
.cart-summary-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.summary-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.cart-security-badge {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--color-muted-foreground);
    font-size: 0.85rem;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 0.75rem;
    border-radius: var(--radius-md);
}

/* Empty State */
.empty-cart-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    text-align: center;
    min-height: 400px;
}

.empty-icon {
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--color-muted-foreground);
}

.empty-cart-state h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-foreground);
}

.empty-cart-state p {
    color: var(--color-muted-foreground);
    margin-bottom: 2rem;
    max-width: 400px;
}

.hidden {
    display: none !important;
}

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

.contact-section {
    padding: 4rem 0;
    min-height: 80vh;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-foreground);
    text-align: center;
    margin-bottom: 1rem;
}

.contact-subtitle {
    color: var(--color-muted-foreground);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

/* Contact Form Card */
.contact-form-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.btn-contact {
    margin-top: 2rem;
    padding: 1.25rem 1rem;
    font-weight: 600;
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--radius-md);
}

.btn-contact:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

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

.contact-info-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

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

.contact-method {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-foreground);
}

.contact-link {
    color: var(--color-primary);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
    display: inline-block;
    width: fit-content;
}

.contact-link:hover {
    text-decoration: none;
    border-bottom-color: var(--color-primary);
}

.contact-note {
    font-size: 0.85rem;
    color: var(--color-muted-foreground);
    margin-top: 0.25rem;
}

.btn-text {
    background: none;
    border: none;
    color: var(--color-primary);
    padding: 0;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    width: fit-content;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.btn-text:hover {
    text-decoration: none;
    border-bottom-color: var(--color-primary);
}

/* FAQ Preview */
.faq-preview-card {
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    display: none;
}

.faq-preview-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-foreground);
}

.faq-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-list li a {
    color: var(--color-muted-foreground);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.faq-list li a:hover {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.faq-list li a::after {
    content: "→";
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.2s;
}

.faq-list li a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================================================== */
/* LEGAL CONTENT PAGES (Privacy, Terms, Shipping, Refund)                     */
/* ========================================================================== */

.legal-section {
    padding: 4rem 0;
    min-height: 60vh;
}

.legal-content {
    color: var(--color-muted-foreground);
    line-height: 1.7;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.legal-content section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.legal-content p {
    margin: 0;
}

.legal-content strong {
    color: var(--color-foreground);
    font-weight: 600;
}

.legal-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legal-content li {
    margin: 0;
}

.legal-content a {
    color: var(--color-primary);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.table-container {
    overflow-x: auto;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    text-align: left;
}

.legal-table th {
    padding: 0.75rem 1rem;
    font-weight: 600;
    color: var(--color-foreground);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.legal-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-table .highlight-row td {
    font-weight: 600;
    color: var(--color-primary);
}

/* Track Order Tracking Result Styling */
.tracking-result-card {
    margin-top: 3rem;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(250, 204, 21, 0.2); /* Primary color border */
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.tracking-header {
    background-color: rgba(250, 204, 21, 0.05);
    border-bottom: 1px solid rgba(250, 204, 21, 0.1);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.tracking-status-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-foreground);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tracking-status-title svg {
    color: var(--color-primary);
}

.tracking-est-delivery {
    color: var(--color-muted-foreground);
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

.tracking-est-delivery span {
    color: var(--color-foreground);
    font-weight: 500;
}

.tracking-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    color: var(--color-muted-foreground);
}

.tracking-body {
    padding: 2rem 1.5rem;
}

.tracking-timeline {
    position: relative;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: -1.85rem;
    top: 0.25rem;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: 2px solid var(--color-background);
    background-color: rgba(255, 255, 255, 0.3);
}

.timeline-dot.active {
    background-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.2);
}

.timeline-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.timeline-status {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-foreground);
}

.timeline-details {
    font-size: 0.8rem;
    color: var(--color-muted-foreground);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

