/* ===================================
   CSS Variables - Color Scheme
   =================================== */
:root {
    /* Primary Colors */
    --primary-color: #2F80ED;        /* Blue */
    --secondary-color: #FF6B35;      /* Coral Orange */
    --accent-color: #56CCF2;         /* Light Blue */

    /* Background Colors */
    --bg-primary: #F5F9FF;           /* Light Blue Tint */
    --bg-white: #FFFFFF;
    --bg-dark: #2D3436;              /* Dark Gray */
    
    /* Text Colors */
    --text-primary: #2D3436;
    --text-secondary: #636E72;
    --text-light: #B2BEC3;
    --text-white: #FFFFFF;
    
    /* Border & Shadow */
    --border-color: #DFE6E9;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
    transition: var(--transition-fast);
}

input, textarea, select {
    font-family: inherit;
    outline: none;
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

ul, ol {
    list-style: none;
}

/* ===================================
   Utility Classes
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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

.required {
    color: var(--secondary-color);
}

/* ===================================
   Header Styles
   =================================== */
.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.logo .tagline {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-style: italic;
}

.nav-list {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-list a {
    color: var(--text-primary);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.cart-btn {
    position: relative;
    background-color: var(--primary-color);
    color: var(--text-white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.cart-btn:hover {
    background-color: #234d24;
    transform: scale(1.05);
}

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

.mobile-menu-toggle {
    display: none;
    background-color: transparent;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--text-white);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.hero-content h2 {
    color: var(--text-white);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.hero-content p {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* ===================================
   Products Section
   =================================== */
.products-section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    margin-bottom: var(--spacing-sm);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

/* Product Card Styles - Will be added in next section */

/* ===================================
   Footer Styles
   =================================== */
.footer {
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    margin-top: var(--spacing-xl);
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--text-white);
    margin-bottom: var(--spacing-sm);
}

.footer-section p {
    color: var(--text-light);
    margin-bottom: var(--spacing-xs);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

/* ===================================
   Product Card Styles
   =================================== */
.product-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
}

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

.product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--bg-primary);
}

.product-image img {
    
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.product-discount {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--secondary-color);
    color: var(--text-white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.product-info {
    padding: var(--spacing-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.product-category {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.product-price {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

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

.product-price .mrp {
    font-size: 1rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.product-controls {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.unit-selector {
    width: 100%;
    padding: 0.625rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    background-color: var(--bg-white);
    cursor: pointer;
}

.unit-selector:focus {
    border-color: var(--primary-color);
    outline: none;
}

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

.qty-btn {
    width: 35px;
    height: 35px;
    border: 2px solid var(--primary-color);
    background-color: var(--bg-white);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

.qty-input {
    flex: 1;
    text-align: center;
    padding: 0.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
}

.qty-input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.product-actions {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: auto;
}

.product-actions .btn {
    flex: 1;
}

.btn-icon {
    width: 45px;
    height: 45px;
    border: 2px solid var(--primary-color);
    background-color: var(--bg-white);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

/* ===================================
   Modal Styles
   =================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-primary);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background-color: var(--secondary-color);
    color: var(--text-white);
    border-color: var(--secondary-color);
}

.modal-body {
    padding: var(--spacing-lg);
}

.modal-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.modal-product-image {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.modal-product-image img {
    width: 100%;
    height: auto;
}

.modal-product-details h2 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.modal-product-price {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.modal-product-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.modal-product-price .mrp {
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.modal-product-price .discount {
    background-color: var(--secondary-color);
    color: var(--text-white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.modal-section {
    margin-bottom: var(--spacing-lg);
}

.modal-section h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
    font-size: 1.25rem;
}

.modal-section p {
    line-height: 1.8;
    color: var(--text-primary);
}

.modal-section ul,
.modal-section ol {
    padding-left: var(--spacing-md);
    list-style: disc;
}

.modal-section li {
    margin-bottom: var(--spacing-xs);
    line-height: 1.6;
    color: var(--text-primary);
}

.modal-controls {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.modal-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.modal-actions .btn {
    flex: 1;
}

/* ===================================
   Overlay
   =================================== */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    backdrop-filter: blur(2px);
}

.overlay.active {
    display: block;
}

/* ===================================
   Cart Sidebar Styles
   =================================== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}

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

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    border-bottom: 2px solid var(--border-color);
    background-color: var(--primary-color);
    color: var(--text-white);
}

.cart-header h3 {
    color: var(--text-white);
    margin: 0;
}

.close-cart {
    width: 35px;
    height: 35px;
    background-color: transparent;
    border: 2px solid var(--text-white);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.close-cart:hover {
    background-color: var(--text-white);
    color: var(--primary-color);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: var(--spacing-md);
}

.cart-item {
    display: flex;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background-color: var(--bg-primary);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
}

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

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cart-item-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.cart-item-unit {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

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

.cart-item-actions {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.cart-item-remove {
    background-color: transparent;
    color: var(--secondary-color);
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.25rem;
    transition: var(--transition-fast);
}

.cart-item-remove:hover {
    color: #d63031;
    transform: scale(1.1);
}

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

.cart-item-quantity button {
    width: 28px;
    height: 28px;
    border: 1px solid var(--primary-color);
    background-color: var(--bg-white);
    color: var(--primary-color);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cart-item-quantity button:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.cart-item-quantity span {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.cart-empty {
    text-align: center;
    padding: var(--spacing-xl);
    color: var(--text-secondary);
}

.cart-empty i {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: var(--spacing-md);
}

.cart-footer {
    padding: var(--spacing-md);
    border-top: 2px solid var(--border-color);
    background-color: var(--bg-primary);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    font-size: 1.25rem;
    font-weight: 600;
}

.total-amount {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.checkout-btn {
    width: 100%;
}

/* ===================================
   Checkout Page Styles
   =================================== */
.checkout-page,
.payment-page {
    min-height: calc(100vh - 200px);
    padding: var(--spacing-xl) 0;
}

.checkout-header,
.payment-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.checkout-steps {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: var(--transition-fast);
}

.step.active .step-number {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.step.completed .step-number {
    background-color: var(--accent-color);
    color: var(--text-white);
}

.step-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.step.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

.checkout-content,
.payment-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
}

.order-summary,
.payment-summary {
    background-color: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    height: fit-content;
    sticky: top: 100px;
}

.order-summary h3,
.payment-summary h3 {
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.summary-items {
    margin-bottom: var(--spacing-md);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--border-color);
}

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

.summary-item-info {
    display: flex;
    flex-direction: column;
}

.summary-item-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.summary-item-details {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.summary-item-price {
    font-weight: 600;
    color: var(--primary-color);
}

.summary-total {
    border-top: 2px solid var(--border-color);
    padding-top: var(--spacing-md);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-sm);
}

.summary-row.total {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: var(--spacing-sm);
}

.buyer-details,
.payment-section {
    background-color: var(--bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.buyer-details h3,
.payment-section h3 {
    margin-bottom: var(--spacing-md);
    color: var(--primary-color);
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition-fast);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

/* ===================================
   Payment Page Styles
   =================================== */
.delivery-details {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 2px solid var(--border-color);
}

.delivery-details h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.delivery-details p {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.amount-large {
    font-size: 2rem !important;
}

.payment-instructions {
    background-color: var(--bg-primary);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
    border-left: 4px solid var(--primary-color);
}

.payment-instructions p {
    margin: 0;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.payment-instructions i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.payment-methods {
    margin-bottom: var(--spacing-lg);
}

.payment-method {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    background-color: var(--bg-primary);
}

.payment-method-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.payment-method-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.payment-method-header h4 {
    margin: 0;
    color: var(--primary-color);
}

.upi-payment {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
}

.qr-code {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-placeholder {
    width: 200px;
    height: 200px;
    background-color: var(--bg-white);
    border: 3px dashed var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.qr-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
}

.qr-placeholder p {
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.qr-placeholder small {
    color: var(--text-secondary);
}

/* QR Code Image Styling */
.qr-image {
    width: 240px;
    height: auto;
    background: white;
    border: 3px solid #2F80ED;
    border-radius: 15px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(47, 128, 237, 0.25);
    transition: transform 0.3s ease;
}

.qr-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(47, 128, 237, 0.35);
}

.qr-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.qr-label {
    margin-top: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2F80ED;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.upi-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.upi-id-section label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.upi-id-box {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background-color: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 2px solid var(--primary-color);
}

.upi-id-box span {
    flex: 1;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
}

.copy-btn {
    background-color: var(--primary-color);
    color: var(--text-white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copy-btn:hover {
    background-color: #234d24;
}

.payment-steps-guide {
    background-color: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
}

.payment-steps-guide h5 {
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

.payment-steps-guide ol {
    padding-left: var(--spacing-md);
    list-style: decimal;
}

.payment-steps-guide li {
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.payment-note {
    background-color: var(--bg-primary);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
}

.payment-note p {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.payment-note p:last-child {
    margin-bottom: 0;
}

.payment-note i {
    color: var(--accent-color);
}

.payment-actions {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-md);
}

/* ===================================
   Toast Notification
   =================================== */
.toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    z-index: 10000;
    transition: bottom 0.3s ease;
}

.toast.show {
    bottom: 30px;
}

.toast i {
    font-size: 1.25rem;
}

/* ===================================
   Responsive Design
   =================================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .checkout-content,
    .payment-content {
        grid-template-columns: 1fr;
    }

    .order-summary,
    .payment-summary {
        order: 2;
    }

    .buyer-details,
    .payment-section {
        order: 1;
    }

    .modal-product-grid {
        grid-template-columns: 1fr;
    }

    .upi-payment {
        grid-template-columns: 1fr;
    }
}

/* Mobile (< 768px) */
@media (max-width: 768px) {
    /* Typography */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    /* Header */
    .header-content {
        padding: var(--spacing-sm) 0;
    }

    .logo h1 {
        font-size: 1.25rem;
    }

    .logo .tagline {
        font-size: 0.75rem;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--bg-white);
        box-shadow: var(--shadow-md);
        padding: var(--spacing-md);
        transition: left 0.3s ease;
        z-index: 99;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .mobile-menu-toggle {
        display: block;
    }

    /* Hero */
    .hero-content h2 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* Products Grid */
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    /* Cart Sidebar */
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

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

    /* Modal */
    .modal-content {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    /* Forms */
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
    }

    /* Checkout Steps */
    .checkout-steps {
        gap: var(--spacing-sm);
    }

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

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
    .product-controls {
        gap: 0.5rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
    }

    .btn-icon {
        width: 100%;
    }

    .payment-actions {
        flex-direction: column;
    }

    .payment-actions .btn {
        width: 100%;
    }
}

/* ===================================
   Utility Classes & Animations
   =================================== */

/* Loading Spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--text-white);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Fade In Animation */
.fade-in {
    animation: fadeIn 0.5s ease;
}

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

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1e5fc7;
}

/* Selection */
::selection {
    background-color: var(--primary-color);
    color: var(--text-white);
}

/* Focus Visible */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Disabled State */
button:disabled,
input:disabled,
select:disabled,
textarea:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cart-sidebar,
    .modal,
    .overlay,
    .toast {
        display: none !important;
    }
}

/* ===================================
   About Page Styles
   =================================== */

.about-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: calc(100vh - 80px);
}

.about-hero {
    text-align: center;
    padding: 3rem 0 2rem;
    background: linear-gradient(135deg, #2F80ED 0%, #56CCF2 100%);
    color: white;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-hero .section-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
    font-weight: 300;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.about-intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.about-text h2 {
    color: #2F80ED;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.2rem !important;
    color: #2F80ED !important;
    font-weight: 500;
}

.quote-text {
    background: #F5F9FF;
    padding: 2rem;
    border-left: 4px solid #56CCF2;
    font-style: italic;
    font-size: 1.15rem !important;
    color: #2F80ED !important;
    margin: 2rem 0 !important;
    border-radius: 8px;
}

.quote-text i {
    color: #56CCF2;
    font-size: 1.5rem;
    vertical-align: middle;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #56CCF2 0%, #2F80ED 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(47, 128, 237, 0.3);
}

.image-placeholder i {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.image-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

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

.mission-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #56CCF2 0%, #2F80ED 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mission-icon i {
    font-size: 2.5rem;
    color: white;
}

.mission-card h3 {
    color: #2F80ED;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-card p {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

.signature-section {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 3rem;
}

.signature-text {
    font-size: 1.2rem;
    color: #555;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.signature-name {
    font-size: 2rem;
    color: #2F80ED;
    font-weight: 700;
    font-family: 'Brush Script MT', cursive;
    margin-bottom: 1rem;
}

.signature-line {
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #56CCF2, transparent);
    margin: 0 auto;
}

.cta-section {
    background: linear-gradient(135deg, #2F80ED 0%, #56CCF2 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(47, 128, 237, 0.3);
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    background: white;
    color: #2F80ED;
    font-weight: 600;
}

.btn-large:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero .section-subtitle {
        font-size: 1.2rem;
    }

    .about-intro {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .about-image {
        order: -1;
    }

    .image-placeholder {
        width: 200px;
        height: 200px;
    }

    .image-placeholder i {
        font-size: 4rem;
    }

    .mission-section {
        grid-template-columns: 1fr;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }
}

/* ===================================
   Returns & Refunds Policy Styles
   =================================== */

.policy-section {
    background: #F5F9FF;
    border: 2px solid #56CCF2;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.policy-section h4 {
    color: #2F80ED;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.policy-section h4 i {
    color: #56CCF2;
}

.policy-text {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.policy-note {
    color: #2F80ED;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.contact-info {
    background: white;
    padding: 1.25rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid #56CCF2;
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    color: #555;
}

.contact-info p strong {
    color: #2F80ED;
    display: block;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.contact-message {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem !important;
}

.contact-link {
    margin: 0.75rem 0 !important;
    padding-left: 0.5rem;
}

.contact-link i {
    color: #56CCF2;
    margin-right: 0.75rem;
    width: 20px;
}

.contact-link a {
    color: #2F80ED;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
}

.contact-link a:hover {
    text-decoration: underline;
    color: #1e5bb8;
}

.help-text {
    color: #2F80ED;
    font-style: italic;
    font-size: 0.9rem !important;
    margin-top: 1rem !important;
    padding: 0.75rem;
    background: #F5F9FF;
    border-radius: 6px;
}

/* Signature Box */
.signature-box {
    background: linear-gradient(135deg, #F5F9FF 0%, #ffffff 100%);
    padding: 1.25rem;
    border-radius: 8px;
    margin-top: 1.25rem;
    border-top: 2px solid #56CCF2;
}

.thank-you {
    color: #2F80ED;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem !important;
}

.regards {
    color: #555;
    font-size: 0.9rem;
    margin: 0.5rem 0 0.25rem 0 !important;
    font-style: italic;
}

.signature-name {
    color: #2F80ED;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 !important;
    font-family: 'Brush Script MT', cursive, 'Poppins', sans-serif;
}

/* Footer Updates */
.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-section i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.refund-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Social Links Styling */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2F80ED 0%, #56CCF2 100%);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(47, 128, 237, 0.4);
}

.social-links a i {
    color: white;
}

/* Individual social media colors on hover */
.social-links a[title="Facebook"]:hover {
    background: #1877F2;
}

.social-links a[title="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-links a[title="YouTube"]:hover {
    background: #FF0000;
}

/* Admin Link Styling */
.admin-link {
    margin-top: 1rem;
    text-align: center;
}

.admin-link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.3;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.admin-link a:hover {
    opacity: 1;
    color: #2F80ED;
    background: rgba(47, 128, 237, 0.1);
    transform: rotate(90deg);
}

.admin-link a i {
    font-size: 0.9rem;
}

/* ===================================
   Payment Confirmation Styles
   =================================== */

.payment-confirmation {
    background: #F5F9FF;
    border: 2px solid #56CCF2;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.payment-confirmation h3 {
    color: #2F80ED;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.confirmation-instruction {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.confirmation-form {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
}

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

.confirmation-form label {
    display: block;
    color: #2F80ED;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.confirmation-form label i {
    margin-right: 0.5rem;
    color: #56CCF2;
}

.confirmation-form input[type="text"] {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #E8F4FF;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.confirmation-form input[type="text"]:focus {
    outline: none;
    border-color: #56CCF2;
    box-shadow: 0 0 0 3px rgba(86, 204, 242, 0.1);
}

.confirmation-form small {
    display: block;
    color: #888;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Order Confirmation Modal */
.order-confirmation-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.confirmation-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.success-icon {
    font-size: 5rem;
    color: #28a745;
    margin-bottom: 1.5rem;
    animation: scaleIn 0.5s ease-out;
}

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

.confirmation-content h2 {
    color: #2F80ED;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.order-number {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #F5F9FF;
    border-radius: 8px;
}

.order-number strong {
    color: #2F80ED;
    font-size: 1.3rem;
}

.thank-you {
    font-size: 1.3rem;
    color: #28a745;
    font-weight: 600;
    margin-bottom: 2rem;
}

.order-summary {
    background: #F5F9FF;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    text-align: left;
}

.order-summary h3 {
    color: #2F80ED;
    margin-bottom: 1rem;
}

.order-summary p {
    margin: 0.5rem 0;
    color: #555;
}

.status-confirmed {
    color: #28a745;
    font-weight: 700;
}

.confirmation-message,
.delivery-message {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    border-left: 4px solid #56CCF2;
    text-align: left;
}

.confirmation-message i,
.delivery-message i {
    color: #56CCF2;
    margin-right: 0.5rem;
}

.confirmation-actions {
    margin-top: 2rem;
}

.confirmation-actions .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
}

.modal-overlay.active {
    display: flex;
}

/* ===================================
   Contact Page Styles
   =================================== */

.contact-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: calc(100vh - 80px);
}

.contact-hero {
    text-align: center;
    padding: 3rem 0 2rem;
    background: linear-gradient(135deg, #2F80ED 0%, #56CCF2 100%);
    color: white;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-hero .section-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.contact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #56CCF2 0%, #2F80ED 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 2.5rem;
    color: white;
}

.contact-card h3 {
    color: #2F80ED;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.contact-card p {
    color: #555;
    margin-bottom: 1rem;
}

.contact-link-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #2F80ED 0%, #56CCF2 100%);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.contact-link-btn:hover {
    transform: scale(1.05);
}

.highlight-text {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2F80ED;
    margin-top: 0.5rem;
}

/* Policy Detailed Section */
.policy-detailed {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.policy-detailed h2 {
    color: #2F80ED;
    font-size: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.policy-content {
    color: #555;
    line-height: 1.8;
}

.policy-intro {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.policy-statement {
    color: #2F80ED;
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.contact-info-detailed {
    background: #F5F9FF;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #56CCF2;
    margin: 2rem 0;
}

.contact-info-detailed h3 {
    color: #2F80ED;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.method {
    display: flex;
    align-items: start;
    gap: 1rem;
    background: white;
    padding: 1.25rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.method i {
    font-size: 2rem;
    color: #56CCF2;
    margin-top: 0.25rem;
}

.method strong {
    display: block;
    color: #2F80ED;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.method a {
    color: #555;
    text-decoration: none;
    font-size: 1rem;
}

.method a:hover {
    color: #2F80ED;
    text-decoration: underline;
}

.help-message {
    background: white;
    padding: 1.25rem;
    border-radius: 10px;
    color: #2F80ED;
    font-style: italic;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.help-message i {
    font-size: 1.5rem;
    color: #56CCF2;
}

/* Signature Section in Contact */
.signature-section-contact {
    background: linear-gradient(135deg, #F5F9FF 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
    border-top: 3px solid #56CCF2;
}

.thank-you-message {
    color: #2F80ED;
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.signature {
    text-align: right;
    padding: 1rem;
}

.signature .regards {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    font-style: italic;
}

.signature .signature-name {
    color: #2F80ED;
    font-weight: 700;
    font-size: 1.5rem;
    font-family: 'Brush Script MT', cursive;
    margin-bottom: 0.5rem;
}

.signature .signature-line {
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #56CCF2);
    margin-left: auto;
}

/* Location Section */
.location-section {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.location-section h2 {
    color: #2F80ED;
    font-size: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

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

.location-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: #F5F9FF;
    border-radius: 10px;
    border-left: 4px solid #56CCF2;
    transition: transform 0.3s ease;
}

.location-item:hover {
    transform: translateX(5px);
}

.location-item i {
    font-size: 1.8rem;
    color: #56CCF2;
    min-width: 30px;
}

.location-item h4 {
    color: #2F80ED;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.location-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.location-item a {
    color: #2F80ED;
    text-decoration: none;
    font-weight: 500;
}

.location-item a:hover {
    text-decoration: underline;
}

.map-placeholder {
    background: linear-gradient(135deg, #F5F9FF 0%, #E8F4FF 100%);
    border: 3px solid #56CCF2;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    min-height: 400px;
}

.map-placeholder i {
    font-size: 5rem;
    color: #56CCF2;
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: #2F80ED;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.map-placeholder small {
    color: #555;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-section h2 {
    color: #2F80ED;
    font-size: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-item {
    background: #F5F9FF;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 4px solid #56CCF2;
}

.faq-item h4 {
    color: #2F80ED;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

/* Responsive for Contact Page */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero .section-subtitle {
        font-size: 1.1rem;
    }

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

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

    .policy-detailed {
        padding: 2rem 1.5rem;
    }

    .signature {
        text-align: center;
    }

    .signature .signature-line {
        margin: 0 auto;
    }

    .shipping-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .shipping-time {
        text-align: left;
        margin-left: 2rem;
    }

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

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

    .map-placeholder {
        min-height: 250px;
    }
}

/* ===================================
   Shipping Table Styles
   =================================== */

.shipping-table {
    margin: 1.5rem 0;
}

.shipping-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    margin: 0.75rem 0;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #56CCF2;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shipping-row:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(47, 128, 237, 0.15);
}

.shipping-region {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    flex: 1;
}

.shipping-region i {
    color: #56CCF2;
    font-size: 1.1rem;
    margin-top: 0.25rem;
    min-width: 20px;
}

.shipping-region span {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.shipping-time {
    background: linear-gradient(135deg, #2F80ED 0%, #56CCF2 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    min-width: 140px;
    text-align: center;
}

/* Detailed Shipping Table (Contact Page) */
.shipping-table-detailed {
    margin: 2rem 0;
}

.shipping-row-detailed {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    margin: 1rem 0;
    background: white;
    border-radius: 10px;
    border: 2px solid #E8F4FF;
    transition: all 0.3s ease;
}

.shipping-row-detailed:hover {
    border-color: #56CCF2;
    box-shadow: 0 5px 20px rgba(47, 128, 237, 0.1);
    transform: translateY(-2px);
}

.shipping-region-detailed {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.shipping-region-detailed i {
    color: #56CCF2;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.shipping-region-detailed strong {
    color: #2F80ED;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    display: block;
}

.shipping-region-detailed p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.shipping-time-detailed {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F5F9FF 0%, #E8F4FF 100%);
    border-radius: 10px;
    padding: 1rem;
    border: 2px solid #56CCF2;
}

.shipping-time-detailed i {
    font-size: 2rem;
    color: #56CCF2;
    margin-bottom: 0.5rem;
}

.shipping-time-detailed span {
    color: #2F80ED;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    line-height: 1.4;
}

