/* ===== PAGES STYLESHEET - SHARED ACROSS ALL INNER PAGES ===== */

/* ===== BREADCRUMB ===== */
.breadcrumb {
    background: var(--light-gray);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--gray);
    transition: color 0.3s;
}

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

.breadcrumb i {
    font-size: 10px;
    margin: 0 10px;
    color: var(--gray);
}

.breadcrumb span {
    color: var(--dark);
    font-weight: 600;
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--dark) 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero.large { padding: 100px 0; }

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,107,26,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,107,26,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 20px;
}

.breadcrumb-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.breadcrumb-light a { color: rgba(255,255,255,0.8); transition: color 0.3s; }
.breadcrumb-light a:hover { color: var(--primary); }
.breadcrumb-light i { font-size: 10px; }
.breadcrumb-light span { color: var(--primary); font-weight: 600; }

/* ===== ACTIVE NAV LINK ===== */
.nav-menu a.active {
    color: var(--primary);
}
.nav-menu a.active::after { width: 100%; }

/* ============================================ */
/* ===== PRODUCT DETAIL PAGE =================== */
/* ============================================ */
.product-detail-section {
    padding: 60px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.product-gallery {
    position: sticky;
    top: 90px;
    align-self: start;
}

.main-image {
    width: 100%;
    height: 550px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 220px;
    color: rgba(0,0,0,0.15);
    position: relative;
    margin-bottom: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.zoom-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

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

.thumbnail-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.thumbnail {
    height: 100px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: rgba(0,0,0,0.2);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.thumbnail:hover, .thumbnail.active {
    border-color: var(--primary);
}

.product-detail-info .product-series {
    font-size: 13px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
}

.product-detail-info h1 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 40px;
    font-weight: 900;
    margin: 8px 0 16px;
    line-height: 1.2;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.product-rating .stars { color: #fbbf24; font-size: 16px; }
.product-rating span { color: var(--gray); font-size: 14px; }
.product-rating a {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.product-price-box {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.current-price {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--dark);
}

.original-price {
    font-size: 22px;
    color: var(--gray);
    text-decoration: line-through;
}

.discount-badge {
    background: #10b981;
    color: var(--white);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
}

.tax-info {
    color: var(--success);
    font-size: 14px;
    margin-bottom: 24px;
}

.tax-info i { margin-right: 6px; }

.product-detail-desc {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.key-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 14px;
}

.kf-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kf-item i {
    color: var(--primary);
    font-size: 20px;
    width: 30px;
}

.kf-item span {
    font-size: 14px;
    font-weight: 600;
}

.option-section {
    margin-bottom: 24px;
}

.option-section h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.option-section h4 .selected-option {
    color: var(--gray);
    font-weight: 500;
    margin-right: auto;
    margin-left: 4px;
}

.size-guide {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: underline;
}

.color-options {
    display: flex;
    gap: 10px;
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
    box-shadow: 0 0 0 2px var(--border);
}

.color-swatch.active {
    box-shadow: 0 0 0 2px var(--primary);
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.size-btn {
    width: 60px;
    height: 44px;
    border: 2px solid var(--border);
    background: var(--white);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    font-size: 13px;
}

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

.size-btn.active {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--border);
    border-radius: 30px;
    overflow: hidden;
}

.quantity-selector.small {
    border-radius: 20px;
}

.qty-btn {
    width: 44px;
    height: 44px;
    background: var(--white);
    border: none;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.quantity-selector.small .qty-btn {
    width: 32px;
    height: 32px;
    font-size: 14px;
}

.qty-btn:hover { background: var(--light-gray); color: var(--primary); }

.quantity-selector input {
    width: 50px;
    text-align: center;
    border: none;
    font-weight: 700;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    background: transparent;
}

.quantity-selector.small input { width: 36px; font-size: 13px; }

.action-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 36px;
    font-size: 15px;
}

.wishlist-btn {
    width: 56px;
    height: 56px;
    border: 2px solid var(--border);
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 18px;
    color: var(--dark);
    flex-shrink: 0;
}

.wishlist-btn:hover, .wishlist-btn.active {
    border-color: #ef4444;
    color: #ef4444;
    background: #fee2e2;
}

.pincode-section {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 14px;
    margin-bottom: 24px;
}

.pincode-section h4 {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--dark);
}

.pincode-section h4 i { color: var(--primary); margin-right: 6px; }

.pincode-input {
    display: flex;
    gap: 10px;
}

.pincode-input input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

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

.pincode-input button {
    padding: 12px 24px;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.pincode-input button:hover { background: var(--primary); }

.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-badge i {
    color: var(--primary);
    font-size: 18px;
    width: 28px;
}

.trust-badge span {
    font-size: 13px;
    font-weight: 600;
}

/* Product Tabs */
.product-tabs {
    margin-bottom: 80px;
}

.tabs-nav {
    display: flex;
    border-bottom: 2px solid var(--border);
    margin-bottom: 30px;
    gap: 30px;
    overflow-x: auto;
    flex-wrap: wrap;
}

.tab-btn {
    background: none;
    border: none;
    padding: 16px 0;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s;
    white-space: nowrap;
}

.tab-btn:hover { color: var(--dark); }

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-content {
    display: none;
    padding: 20px 0;
}

.tab-content.active { display: block; animation: fadeIn 0.4s; }

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

.tab-content h3 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.tab-content h4 {
    font-size: 18px;
    margin: 20px 0 12px;
    font-weight: 700;
}

.tab-content p {
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.8;
}

.tab-content ul li {
    color: var(--gray);
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
}

.tab-content ul li i {
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--success);
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table tr {
    border-bottom: 1px solid var(--border);
}

.spec-table td {
    padding: 14px 16px;
    font-size: 14px;
}

.spec-table td:first-child {
    font-weight: 600;
    color: var(--dark);
    background: var(--light-gray);
    width: 35%;
}

.spec-table td:last-child {
    color: var(--gray);
}

/* Reviews */
.reviews-summary {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 16px;
    margin-bottom: 30px;
}

.rating-overview { text-align: center; }
.rating-overview h2 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 64px;
    color: var(--primary);
    line-height: 1;
}
.rating-overview .stars { color: #fbbf24; font-size: 20px; margin: 8px 0; }
.rating-overview p { color: var(--gray); font-size: 13px; }

.rating-bars { display: flex; flex-direction: column; gap: 8px; }

.rating-row {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
}

.bar {
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 4px;
}

.review-item {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 16px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.review-header strong { display: block; font-size: 15px; }
.review-header .stars { color: #fbbf24; font-size: 13px; }

.verified {
    margin-left: auto;
    color: var(--success);
    font-size: 12px;
    font-weight: 600;
}

.review-item h4 { font-size: 16px; margin-bottom: 8px; }

/* Shipping Info */
.shipping-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.shipping-item {
    padding: 24px;
    background: var(--light-gray);
    border-radius: 14px;
    text-align: center;
}

.shipping-item i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 14px;
}

.shipping-item h4 { font-size: 16px; margin-bottom: 8px; }
.shipping-item p { font-size: 14px; color: var(--gray); }

.related-products { padding-top: 40px; }

/* ============================================ */
/* ===== CART PAGE ============================= */
/* ============================================ */
.checkout-steps {
    background: var(--light-gray);
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
}

.steps-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 700px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray);
}

.step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.step.active .step-num {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.step.done .step-num {
    background: var(--success);
    border-color: var(--success);
    color: var(--white);
}

.step.active span, .step.done span { color: var(--dark); font-weight: 600; }

.step span { font-size: 13px; font-weight: 500; }

.step-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin: 0 16px;
    margin-bottom: 30px;
}

.step-line.done { background: var(--success); }

.cart-section {
    padding: 60px 0;
}

.cart-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.cart-items {
    background: var(--white);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.cart-header h2 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 28px;
    font-weight: 700;
}

.continue-shopping {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 16px;
    align-items: center;
    transition: all 0.3s;
}

.cart-item:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: rgba(0,0,0,0.2);
}

.cart-item-info .item-series {
    font-size: 11px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.cart-item-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 6px 0;
}

.item-meta {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 8px;
}

.item-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.item-tags span {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    background: var(--light-gray);
    color: var(--gray);
}

.item-tags i { color: var(--success); margin-right: 4px; }

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.item-price {
    text-align: right;
}

.item-price .price {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
}

.item-price .original {
    font-size: 13px;
    color: var(--gray);
    text-decoration: line-through;
}

.remove-btn {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 14px;
    padding: 6px;
    transition: color 0.3s;
}

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

.coupon-box {
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    border: 1px dashed var(--primary);
    padding: 20px;
    border-radius: 14px;
    margin-top: 20px;
}

.coupon-box h4 {
    font-size: 15px;
    margin-bottom: 12px;
    color: var(--dark);
}

.coupon-box i { color: var(--primary); margin-right: 6px; }

.coupon-input {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.coupon-input input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    outline: none;
    background: var(--white);
}

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

.coupon-input button { padding: 12px 24px; border: none; border-radius: 8px; cursor: pointer; }

.coupon-suggestion {
    font-size: 12px;
    color: var(--gray);
    margin: 0;
}

.order-summary {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    height: fit-content;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.order-summary.sticky { position: sticky; top: 90px; }

.order-summary h3 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray);
}

.summary-row span:last-child {
    font-weight: 600;
    color: var(--dark);
}

.summary-row .discount { color: #10b981; }
.summary-row .free {
    color: #10b981;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
}

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

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
}

.savings-badge {
    background: #d1fae5;
    color: #065f46;
    padding: 12px 16px;
    border-radius: 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.savings-badge i { margin-right: 6px; }

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 20px;
}

.payment-icons {
    text-align: center;
    margin-bottom: 16px;
}

.payment-icons p {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.payment-list {
    display: flex;
    justify-content: center;
    gap: 14px;
    font-size: 28px;
    color: var(--gray);
}

.trust-mini {
    display: flex;
    justify-content: space-around;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.trust-mini div {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--gray);
}

.trust-mini i { color: var(--success); }

.recommended-section {
    padding: 60px 0;
    background: var(--light-gray);
}

/* ============================================ */
/* ===== CHECKOUT PAGE ========================= */
/* ============================================ */
.checkout-section {
    padding: 60px 0;
}

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

.checkout-forms { display: flex; flex-direction: column; gap: 20px; }

.checkout-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
}

.box-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.box-header h3 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,107,26,0.1);
}

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

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-check label {
    font-size: 14px;
    color: var(--gray);
    cursor: pointer;
}

.form-check label a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

.shipping-methods,
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shipping-option,
.payment-option {
    display: block;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.shipping-option.active,
.payment-option.active,
.shipping-option:has(input:checked),
.payment-option:has(input:checked) {
    border-color: var(--primary);
    background: #fff7ed;
}

.shipping-option input,
.payment-option input { display: none; }

.option-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.option-content > div:first-child {
    display: flex;
    align-items: center;
    gap: 12px;
}

.option-content i {
    font-size: 24px;
    color: var(--primary);
}

.option-content strong {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}

.option-content p {
    font-size: 12px;
    color: var(--gray);
    margin: 0;
}

.option-price {
    font-weight: 700;
    font-size: 16px;
    color: var(--dark);
}

.option-price.free { color: #10b981; }
.cod-fee { font-size: 13px; color: var(--gray); }

.payment-logos {
    display: flex;
    gap: 10px;
    font-size: 24px;
    color: var(--gray);
    align-items: center;
}

.upi-text {
    font-size: 11px;
    background: var(--light-gray);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.card-form {
    display: none;
    padding: 16px;
    background: var(--light-gray);
    border-radius: 10px;
    margin-top: -4px;
}

.card-form.active { display: block; animation: fadeIn 0.3s; }

.order-items { margin-bottom: 20px; }

.order-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.oi-image {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: rgba(0,0,0,0.3);
    position: relative;
}

.qty-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    background: var(--dark);
    color: var(--white);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oi-info h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.oi-info p { font-size: 12px; color: var(--gray); margin: 0; }
.oi-price { font-weight: 700; font-size: 14px; }

.coupon-mini {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.coupon-mini input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    outline: none;
}

.coupon-mini button {
    padding: 10px 18px;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.3s;
}

.coupon-mini button:hover { background: var(--primary); }

.secure-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #f0fdf4;
    border-radius: 10px;
    margin-top: 16px;
}

.secure-info i {
    color: #10b981;
    font-size: 20px;
    flex-shrink: 0;
}

.secure-info p {
    font-size: 12px;
    color: var(--gray);
    margin: 0;
}

/* ============================================ */
/* ===== ABOUT PAGE ============================ */
/* ============================================ */
.about-intro {
    padding: 80px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 44px;
    font-weight: 900;
    line-height: 1.2;
    margin: 12px 0 20px;
}

.intro-text .lead {
    font-size: 17px;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 16px;
}

.intro-text p {
    color: var(--gray);
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.8;
}

.intro-text .btn { margin-top: 16px; }

.visual-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.visual-block {
    padding: 36px 24px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s;
}

.visual-block:hover { transform: translateY(-8px); }

.visual-block h3 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
}

.visual-block p {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.visual-block.primary { background: var(--primary); color: var(--white); }
.visual-block.dark { background: var(--dark); color: var(--white); transform: translateY(20px); }
.visual-block.dark:hover { transform: translateY(10px); }
.visual-block.secondary { background: var(--secondary); color: var(--white); transform: translateY(-20px); }
.visual-block.secondary:hover { transform: translateY(-30px); }
.visual-block.light { background: var(--light-gray); color: var(--dark); border: 1px solid var(--border); }
.visual-block.light h3 { color: var(--primary); }

/* Mission Vision Values */
.mvv-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvv-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.4s;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.mvv-card.featured {
    background: linear-gradient(135deg, var(--dark), #2d2d2d);
    color: var(--white);
    transform: translateY(-15px);
    border-color: transparent;
}

.mvv-card.featured:hover { transform: translateY(-25px); }

.mvv-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}

.mvv-card h3 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 14px;
}

.mvv-card p {
    color: var(--gray);
    line-height: 1.8;
}

.mvv-card.featured p { color: rgba(255,255,255,0.85); }

.values-list {
    text-align: left;
    margin-top: 10px;
}

.values-list li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--border);
    font-size: 14px;
    color: var(--gray);
}

.values-list li:last-child { border-bottom: none; }
.values-list li strong { color: var(--dark); }

/* Timeline */
.journey-section { padding: 80px 0; }

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }

.timeline-year {
    width: 50%;
    padding: 0 40px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--primary);
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-year { text-align: left; }

.timeline-content {
    width: 50%;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin: 0 40px;
    position: relative;
    transition: all 0.3s;
}

.timeline-content:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: var(--primary);
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--primary);
}

.timeline-item:nth-child(odd) .timeline-content::before { left: -49px; }
.timeline-item:nth-child(even) .timeline-content::before { right: -49px; }

.timeline-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

.timeline-content p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
}

/* Why Section */
.why-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: 16px;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.4s;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.why-num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: var(--light-gray);
    line-height: 1;
}

.why-card i {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.why-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
}

/* Team Section */
.team-section { padding: 80px 0; }

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

.team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.4s;
    padding-bottom: 24px;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.team-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 90px;
    color: rgba(255,255,255,0.5);
}

.team-card h4 {
    font-size: 18px;
    margin: 20px 0 4px;
}

.team-role {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card p {
    color: var(--gray);
    font-size: 13px;
    padding: 12px 20px;
    line-height: 1.6;
}

.team-socials {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.team-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: all 0.3s;
    font-size: 13px;
}

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

/* Stats Banner */
.stats-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.stat-big h2 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
}

.stat-big p {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
    opacity: 0.95;
}

/* CTA Section */
.cta-section { padding: 80px 0; }

.cta-box {
    background: linear-gradient(135deg, var(--dark), #2d2d2d);
    color: var(--white);
    padding: 60px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,107,26,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-box h2 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.cta-box p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-outline-dark {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

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

/* ============================================ */
/* ===== CONTACT PAGE ========================== */
/* ============================================ */
.contact-cards-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: -120px;
    position: relative;
    z-index: 2;
}

.contact-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
    transition: all 0.4s;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-color: var(--primary);
}

.contact-card.featured {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    transform: translateY(-15px);
}

.contact-card.featured:hover { transform: translateY(-25px); }
.contact-card.featured .cc-icon { background: rgba(255,255,255,0.2); color: var(--white); }
.contact-card.featured .cc-link { color: var(--white); }
.contact-card.featured .cc-sub { color: rgba(255,255,255,0.85); }

.cc-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 18px;
}

.contact-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-card p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 12px;
}

.contact-card.featured p { color: rgba(255,255,255,0.85); }

.cc-link {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
    transition: color 0.3s;
}

.cc-sub {
    font-size: 12px;
    color: var(--gray);
}

/* Contact Main */
.contact-main-section { padding: 80px 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.contact-form-wrapper h2 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 36px;
    font-weight: 900;
    margin: 12px 0 12px;
    line-height: 1.2;
}

.contact-form-wrapper > p {
    color: var(--gray);
    margin-bottom: 30px;
}

.contact-form {
    background: var(--white);
    padding: 36px;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.contact-form .btn-large {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
}

.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-block {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s;
}

.info-block:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.info-block.dark {
    background: linear-gradient(135deg, var(--dark), #2d2d2d);
    color: var(--white);
    border-color: transparent;
}

.info-block h3 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.info-block p { font-size: 14px; line-height: 1.7; }
.info-block.dark p { color: rgba(255,255,255,0.85); margin-bottom: 16px; }

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.info-item:last-child { margin-bottom: 0; }

.info-item i {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--light-gray);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.info-item p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

.b2b-perks {
    margin: 16px 0 20px;
}

.b2b-perks li {
    padding: 6px 0;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.b2b-perks li i {
    color: var(--primary);
    margin-right: 8px;
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--light-gray);
    border-radius: 10px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.social-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateX(4px);
}

.social-item i {
    font-size: 16px;
    color: var(--primary);
    transition: color 0.3s;
}

.social-item:hover i { color: var(--white); }

/* Map */
.map-section {
    padding: 60px 0;
    background: var(--light-gray);
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* FAQ */
.faq-section { padding: 80px 0; }

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

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

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

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(255,107,26,0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s;
}

.faq-question:hover { background: var(--light-gray); }

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s;
    font-size: 14px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* ============================================ */
/* ===== RESPONSIVE ============================ */
/* ============================================ */
@media (max-width: 1024px) {
    .product-detail-grid,
    .cart-grid,
    .checkout-grid,
    .intro-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-gallery,
    .order-summary.sticky { position: static; }

    .main-image { height: 400px; font-size: 160px; }

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

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

    .contact-cards-grid { margin-top: -40px; }
    .timeline-year { font-size: 32px; padding: 0 20px; }
}

@media (max-width: 768px) {
    .page-hero h1 { font-size: 36px; }
    .page-hero.large { padding: 70px 0; }

    .product-detail-info h1 { font-size: 28px; }
    .current-price { font-size: 32px; }
    .key-features { grid-template-columns: 1fr; }
    .action-buttons { flex-direction: column; }
    .action-buttons .btn { width: 100%; justify-content: center; }
    .wishlist-btn { width: 100%; border-radius: 30px; }

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

    .cart-item {
        grid-template-columns: 80px 1fr;
        grid-template-areas:
            "image info"
            "actions actions";
    }
    .cart-item-image { width: 80px; height: 80px; grid-area: image; font-size: 32px; }
    .cart-item-info { grid-area: info; }
    .cart-item-actions {
        grid-area: actions;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding-top: 12px;
        border-top: 1px solid var(--border);
    }

    .form-row { grid-template-columns: 1fr; }
    .steps-wrapper { flex-direction: column; gap: 16px; }
    .step-line { width: 2px; height: 30px; margin: 0; }

    .mvv-grid,
    .why-grid,
    .team-grid,
    .contact-cards-grid,
    .stats-grid,
    .visual-stack {
        grid-template-columns: 1fr;
    }

    .visual-block { transform: none !important; }

    .timeline::before { left: 20px; }
    .timeline-item,
    .timeline-item:nth-child(even) { flex-direction: column; align-items: flex-start; }
    .timeline-year {
        width: 100%;
        text-align: left !important;
        padding: 0 0 8px 50px;
        font-size: 28px;
    }
    .timeline-content {
        width: calc(100% - 50px);
        margin: 0 0 0 50px;
    }
    .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -38px !important;
        right: auto !important;
    }

    .cta-box { padding: 40px 24px; }
    .cta-box h2 { font-size: 28px; }

    .intro-text h2,
    .contact-form-wrapper h2 { font-size: 28px; }

    .contact-form { padding: 24px; }
    .info-block { padding: 24px; }
    .social-grid { grid-template-columns: 1fr; }
}
