/* ============================================================
   Combined page styles (moved out of inline <style> blocks).
   Linked once from components/frontend/head.blade.php.
   ============================================================ */

/* ===================== social login buttons (Google / Facebook) ===================== */
.social-login-wrap .social-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    width: 100%; min-height: 48px; padding: 10px 16px; margin-bottom: 12px;
    border-radius: 8px; font-size: 15px; font-weight: 600; line-height: 1;
    text-decoration: none; cursor: pointer;
    transition: background-color .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.social-login-wrap .social-btn svg { width: 20px; height: 20px; flex-shrink: 0; display: block; }
.social-login-wrap .social-btn span { display: inline-block; }

.social-login-wrap .social-google {
    background: #fff; color: #3c4043; border: 1px solid #dadce0;
}
.social-login-wrap .social-google:hover {
    background: #f7f8f8; box-shadow: 0 1px 3px rgba(60,64,67,.18);
}

.social-login-wrap .social-facebook {
    background: #1877F2; color: #fff; border: 1px solid #1877F2;
}
.social-login-wrap .social-facebook:hover {
    background: #166fe5; border-color: #166fe5;
}

.social-divider {
    position: relative; text-align: center; margin: 18px 0; color: #9aa0a6; font-size: 13px;
}
.social-divider::before,
.social-divider::after {
    content: ""; position: absolute; top: 50%; width: 42%; height: 1px; background: #e4e6eb;
}
.social-divider::before { left: 0; }
.social-divider::after  { right: 0; }
.social-divider span { background: #fff; padding: 0 10px; position: relative; z-index: 1; }

/* ===================== all-productsdetails ===================== */
.demo img {
    object-fit: cover !important;
}

/* ===================== contactus ===================== */
.text-main-2 {
    color: #ffffff !important;
}
.email-link {
    text-transform: none !important;
}

/* ===================== fragrance-products & shop-all (product cards) ===================== */
.card-product_wrapper { position: relative; }
.product-badge_list {
    position: absolute; top: 10px; left: 10px;
    display: flex; gap: 6px; padding: 0; margin: 0; list-style: none; z-index: 10;
}
.product-badge_item {
    font-size: 11px; font-weight: 600; text-transform: uppercase;
    padding: 3px 8px; border-radius: 12px; color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2); white-space: nowrap;
}
.product-badge_item.bestseller  { background: linear-gradient(45deg,#EE7F00,#EE7F00); }
.product-badge_item.new-arrival { background: linear-gradient(45deg,#499F30,#499F30); }
.product-discount-badge {
    position: absolute; bottom: 15px; right: 15px;
    background: #dc3545; color: #fff; font-size: 13px; font-weight: 700;
    padding: 5px 10px; border-radius: 4px; z-index: 10;
    letter-spacing: .5px; box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.card-rating-row {
    display: flex; align-items: center; gap: 6px;
    margin: 6px 0 4px; font-size: 13px; color: #333;
}
.card-rating-row .star-icon    { color: #f5a623; font-size: 14px; }
.card-rating-row .verified-check {
    display: inline-flex; align-items: center; justify-content: center;
    width: 14px; height: 14px; border-radius: 50%;
    background: #1e88e5; color: #fff; font-size: 9px; font-weight: 700;
}
.card-rating-row .review-count { color: #666; font-size: 12px; }
.card-rating-row .divider      { color: #ccc; margin: 0 2px; }
.card-rating-row.no-reviews    { color: #999; font-size: 12px; }
.category-filter-link { cursor: pointer; }
.category-filter-link.active-cat { color: var(--color-main, #000); font-weight: 700; }
/* Loading fade */
#gridLayout { transition: opacity .25s; }
#gridLayout.loading { opacity: .4; pointer-events: none; }

/* ===================== myaccount ===================== */
.tb-order_code a { word-break: break-all; }

/* ===================== orderdetails (status pills) ===================== */
.tb-order_status { padding:4px 12px; border-radius:12px; font-size:12px; font-weight:600; display:inline-block; }
.stt-paid      { background:#d4edda; color:#155724; }
.stt-cod       { background:#d1ecf1; color:#0c5460; }
.stt-pending   { background:#fff3cd; color:#856404; }
.stt-failed    { background:#f8d7da; color:#721c24; }
.stt-cancelled { background:#f8d7da; color:#721c24; }
.stt-refunded  { background:#e2e3e5; color:#383d41; }

/* ===================== orderdetailsview ===================== */
.prd-info {
    display: flex; align-items: flex-start; gap: 15px;
    padding: 15px 0; border-bottom: 1px solid #eee;
}
.prd-info:last-child { border-bottom: 0; }
.prd-info .info_image img {
    width: 80px; height: 80px; object-fit: cover;
    border-radius: 6px; border: 1px solid #ddd;
}
.prd-info .info_detail { flex: 1; }
.prd-info .info-name {
    font-size: 15px; font-weight: 600; color: #000;
    display: block; margin-bottom: 6px;
}
.prd-info .info-price,
.prd-info .info-qty { margin: 2px 0; color: #555; font-size: 14px; }
.prd-order_total {
    display: flex; justify-content: space-between;
    align-items: center; padding: 15px 0;
    border-top: 2px solid #000; font-size: 17px;
    margin-top: 10px;
}
.bundle-badge {
    display: inline-block; padding: 2px 8px;
    background: #fff3cd; color: #856404;
    font-size: 11px; border-radius: 4px;
    margin-bottom: 5px;
}
.bundle-items {
    margin: 5px 0 0 0; padding-left: 16px;
    font-size: 12px; color: #666;
}
.bundle-items li { margin-bottom: 2px; }
.mrp-strike {
    text-decoration: line-through;
    color: #999; font-size: 12px;
    margin-right: 5px;
}
.status-pill {
    display: inline-block; padding: 4px 12px;
    border-radius: 12px; font-size: 12px; font-weight: 600;
}

/* ===================== order-confirmation ===================== */
.oc-banner { text-align: center; margin-bottom: 2.5rem; }
.oc-banner-icon { font-size: 3rem; color: #4CAF50; margin-bottom: .75rem; }
.oc-banner-icon.cod { color: #0c5460; }
.oc-banner h2 { font-weight: 700; margin-bottom: .35rem; }
.oc-banner h2.online { color: #155724; }
.oc-banner h2.cod-title { color: #0c5460; }
.oc-banner p { color: #6c757d; }
.oc-card { padding: 1.5rem; border: 1px solid #e0e0e0; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,.06); background: #fff; height: 100%; }
.oc-meta-table { width: 100%; font-size: 17px; border-collapse: collapse; }
.oc-meta-table td { padding: 6px 0; vertical-align: top; }
.oc-meta-label { color: #6c757d; font-weight: 600; width: 45%; }
.oc-badge { display: inline-block; padding: 3px 10px; border-radius: 4px; font-size: 17px; font-weight: 600; }
.oc-badge-cod     { background: #d1ecf1; color: #0c5460; }
.oc-badge-online  { background: #d4edda; color: #155724; }
.oc-badge-paid    { background: #d4edda; color: #155724; }
.oc-badge-pending { background: #fff3cd; color: #856404; }
.oc-badge-failed  { background: #f8d7da; color: #721c24; }
.oc-badge-cancelled { background: #f8d7da; color: #721c24; }
.oc-badge-refunded  { background: #e2e3e5; color: #383d41; }
.oc-shipping-name { font-weight: 700; margin-bottom: 4px; }
.oc-shipping-line { font-size: 17px; color: #6c757d; margin-bottom: 3px; }
.oc-section-label { font-weight: 700; font-size: 17px; margin-bottom: .75rem; padding-bottom: 6px; border-bottom: 2px solid #e0e0e0; color: #333; }
.oc-section-label.offer { border-color: #ffc107; color: #856404; }
.oc-item-row { display: flex; align-items: flex-start; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px dashed #eee; }
.oc-item-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.oc-item-img { width: 70px; height: 70px; object-fit: cover; border-radius: 6px; border: 1px solid #eee; flex-shrink: 0; }
.oc-item-info { flex: 1; margin-left: 1rem; }
.oc-item-name { font-weight: 700; color: #333; margin-bottom: 4px; font-size: 17px; }
.oc-item-badge { display: inline-block; background: #fff3cd; color: #856404; font-size: 17px; padding: 2px 8px; border-radius: 3px; margin-bottom: 6px; }
.oc-item-meta { font-size: 17px; color: #6c757d; }
.oc-item-selected { margin: 4px 0 6px 0; padding-left: 16px; font-size: 17px; color: #666; }
.oc-item-price { text-align: right; min-width: 90px; margin-left: .75rem; }
.oc-price-final { font-weight: 700; color: #155724; font-size: 17px; }
.oc-price-original { text-decoration: line-through; color: #6c757d; font-size: 17px; }
.oc-saved { color: #dc3545; font-size: 17px; }
.oc-totals { background: #f9f9f9; border: 1px solid #e0e0e0; border-radius: 6px; padding: 1rem; margin-top: 1rem; }
.oc-totals-row { display: flex; justify-content: space-between; margin-bottom: 4px; }
.oc-totals-divider { border: none; border-top: 1px solid #ddd; margin: .5rem 0; }
.oc-grand-label { font-weight: 700; font-size: 17px; }
.oc-grand-value { font-weight: 700; font-size: 17px; color: #155724; }
.oc-cod-note { font-size: 17px; color: #6c757d; margin-top: .5rem; margin-bottom: 0; }
.oc-actions { display: flex; gap: 1rem; margin-top: 1.25rem; }
.oc-actions .tf-btn { flex: 1; text-align: center; }
