/* ============================================
   GHORER BAZAR STYLE - COMPLETE REDESIGN
   Primary: #F97316 (Orange), Dark Nav: #1a1a2e
   ============================================ */

:root {
    --gb-orange: #F97316;
    --gb-orange-dark: #ea6c0a;
    --gb-orange-light: #FFF7ED;
    --gb-dark: #1a252f;
    --gb-dark-nav: #1b2631;
    --gb-text: #333;
    --gb-muted: #6c757d;
    --gb-border: #e9ecef;
    --gb-bg: #f5f5f5;
    --gb-white: #ffffff;
    --gb-green: #16a34a;
    --gb-save-green: #22c55e;
    --gb-red: #ef4444;
}

/* ============================================
   GLOBAL RESET & BASE
   ============================================ */
* { box-sizing: border-box; }

body {
    font-family: 'Inter', 'Open Sans', sans-serif;
    background: var(--gb-bg);
    color: var(--gb-text);
    margin: 0;
    padding: 0;
}

a { text-decoration: none; }

/* ============================================
   TOP HEADER
   ============================================ */
.gb-header {
    background: var(--gb-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 9999;
}

.gb-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    max-width: 1280px;
    margin: 0 auto;
    gap: 20px;
}

/* Logo */
.gb-logo {
    flex-shrink: 0;
    width: 160px;
}
.gb-logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

/* Search Bar */
.gb-search-wrap {
    flex: 1;
    max-width: 620px;
    position: relative;
}
.gb-search-form {
    display: flex;
    align-items: center;
    background: #f3f4f6;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s;
}
.gb-search-form:focus-within {
    border-color: var(--gb-orange);
}
.gb-search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 11px 16px;
    font-size: 14px;
    outline: none;
    color: var(--gb-text);
}
.gb-search-input::placeholder { color: #9ca3af; }
.gb-search-btn {
    background: var(--gb-orange);
    border: none;
    padding: 11px 18px;
    cursor: pointer;
    color: white;
    font-size: 16px;
    transition: background 0.2s;
}
.gb-search-btn:hover { background: var(--gb-orange-dark); }

/* Header Actions */
.gb-header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}
.gb-header-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    cursor: pointer;
    color: var(--gb-text);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s;
    position: relative;
}
.gb-header-action-item:hover { color: var(--gb-orange); }
.gb-header-action-item i {
    font-size: 22px;
    color: var(--gb-dark);
}
.gb-header-action-item:hover i { color: var(--gb-orange); }
.gb-header-action-item span.label {
    font-size: 12px;
    color: #555;
    font-weight: 500;
}
.gb-cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--gb-orange);
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating Cart Button (right side) */
.gb-float-cart {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gb-orange);
    color: white;
    border-radius: 8px 0 0 8px;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    z-index: 9998;
    box-shadow: -2px 0 12px rgba(0,0,0,0.15);
    cursor: pointer;
    text-decoration: none;
}
.gb-float-cart i { font-size: 20px; }
.gb-float-cart .items-count { font-size: 11px; font-weight: 700; }
.gb-float-cart .items-price { font-size: 12px; font-weight: 600; }

/* ============================================
   DARK NAVIGATION BAR
   ============================================ */
.gb-nav-bar {
    background: var(--gb-dark-nav);
    position: relative;
    z-index: 1000;
}
.gb-nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 0;
}
.gb-nav-item {
    position: relative;
    display: inline-block;
}
.gb-nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    color: #e5e7eb;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.gb-nav-link:hover {
    background: rgba(255,255,255,0.08);
    color: var(--gb-orange);
}
.gb-nav-link i { font-size: 11px; color: #9ca3af; }

/* Dropdown */
.gb-nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 0 0 8px 8px;
    border-top: 2px solid var(--gb-orange);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 10000;
}
.gb-nav-item:hover .gb-nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.gb-nav-dropdown a {
    display: block;
    padding: 9px 18px;
    color: #333;
    font-size: 13px;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.15s;
}
.gb-nav-dropdown a:last-child { border-bottom: none; }
.gb-nav-dropdown a:hover {
    background: var(--gb-orange-light);
    color: var(--gb-orange);
    padding-left: 22px;
}

/* ============================================
   FEATURED CATEGORIES SECTION
   ============================================ */
.gb-section { padding: 30px 0; }
.gb-section-bg { background: var(--gb-white); }
.gb-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
.gb-section-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
}
.gb-section-title-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.gb-section-title-label {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    position: relative;
    padding-bottom: 6px;
}
.gb-section-title-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gb-orange);
    border-radius: 2px;
}
.gb-view-all {
    color: var(--gb-orange);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.gb-view-all:hover { text-decoration: underline; color: var(--gb-orange-dark); }

/* Featured Category Cards (circular) */
.gb-category-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}
.gb-category-grid::-webkit-scrollbar { display: none; }
.gb-category-card {
    flex: 0 0 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    color: var(--gb-text);
    transition: all 0.3s;
    padding: 10px;
}
.gb-category-card:hover { transform: translateY(-5px); }
.gb-category-icon {
    width: 130px;
    height: 130px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 12px;
    transition: all 0.3s;
}
.gb-category-icon img {
    width: 75%;
    height: 75%;
    object-fit: contain;
}
.gb-category-card:hover .gb-category-icon {
    border-color: var(--gb-orange);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.15);
}
.gb-category-name {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    line-height: 1.4;
}

/* ============================================
   BANNER SECTION
   ============================================ */
.gb-banner-section {
    padding: 16px 0;
}
.gb-banner-main {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.gb-banner-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.gb-banner-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.gb-banner-small {
    border-radius: 10px;
    overflow: hidden;
    flex: 1;
}
.gb-banner-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s;
}
.gb-banner-small:hover img { transform: scale(1.04); }

/* Owl dots for banner */
.gb-banner-section .owl-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    text-align: center;
}
.gb-banner-section .owl-dot span {
    background: rgba(255,255,255,0.6);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
    transition: all 0.3s;
}
.gb-banner-section .owl-dot.active span {
    background: white;
    transform: scale(1.3);
}

/* Vertical Hero Sidebar */
.gb-hero-sidebar {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    height: 460px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.gb-sidebar-header {
    background: var(--gb-dark-nav);
    color: white;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}
.gb-sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    overflow-y: auto;
}
.gb-sidebar-menu::-webkit-scrollbar { width: 4px; }
.gb-sidebar-menu::-webkit-scrollbar-thumb { background: #e5e7eb; border-radius: 4px; }
.gb-sidebar-menu li { border-bottom: 1px solid #f3f4f6; }
.gb-sidebar-menu li:last-child { border-bottom: none; }
.gb-sidebar-menu a {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    color: #4b5563;
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}
.gb-sidebar-menu a:hover {
    background: var(--gb-orange-light);
    color: var(--gb-orange);
    padding-left: 22px;
}
.gb-sidebar-menu img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    margin-right: 12px;
}

/* ============================================
   TOP SELLING / HOT DEAL CARDS (horizontal big)
   ============================================ */
.gb-bestsell-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.gb-bestsell-card {
    background: white;
    border-radius: 10px;
    border: 1px solid #f3f4f6;
    display: flex;
    gap: 0;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.2s;
}
.gb-bestsell-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.gb-bestsell-badge {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ef4444;
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
}
.gb-bestsell-img {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 16px 16px;
}
.gb-bestsell-img img {
    max-height: 180px;
    width: 100%;
    object-fit: contain;
}
.gb-bestsell-info {
    width: 55%;
    padding: 30px 16px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
.gb-bestsell-name {
    font-size: 17px;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
}
.gb-bestsell-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--gb-orange);
}
.gb-bestsell-old-price {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: line-through;
    margin-left: 6px;
}
.gb-save-badge {
    display: inline-block;
    background: var(--gb-save-green);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}
.gb-bestsell-actions {
    display: flex;
    gap: 8px;
}
.gb-btn-cart {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1.5px solid var(--gb-orange);
    background: white;
    color: var(--gb-orange);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.gb-btn-cart:hover {
    background: var(--gb-orange);
    color: white;
}
.gb-btn-buy {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--gb-orange);
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    text-decoration: none;
}
.gb-btn-buy:hover { background: var(--gb-orange-dark); color: white; }

/* ============================================
   PRODUCT CARD (small grid cards)
   ============================================ */
.gb-products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.gb-products-carousel .owl-item { padding: 4px; }

.gb-product-card {
    background: white;
    border-radius: 10px;
    border: 1px solid #f3f4f6;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
    position: relative;
    display: flex;
    flex-direction: column;
}
.gb-product-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}
.gb-product-img-wrap {
    position: relative;
    padding-top: 80%;
    background: #fafafa;
}
.gb-product-img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform 0.3s;
}
.gb-product-card:hover .gb-product-img-wrap img { transform: scale(1.05); }
.gb-product-discount-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--gb-save-green);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 4px;
    z-index: 1;
}
.gb-product-badge-new {
    background: #3b82f6;
}
.gb-product-badge-offered {
    background: var(--gb-orange);
}
.gb-product-body {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.gb-product-name {
    font-size: 13.5px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.gb-product-price-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.gb-product-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--gb-orange);
}
.gb-product-old-price {
    font-size: 12px;
    color: #9ca3af;
    text-decoration: line-through;
}
.gb-product-add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    border: 1.5px solid var(--gb-orange);
    background: white;
    color: var(--gb-orange);
    font-size: 13px;
    font-weight: 600;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: auto;
}
.gb-product-add-btn:hover {
    background: var(--gb-orange);
    color: white;
}

/* Wishlist heart on card */
.gb-product-wishlist {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: all 0.2s;
    color: #9ca3af;
    font-size: 14px;
    text-decoration: none;
}
.gb-product-wishlist:hover { color: #ef4444; border-color: #ef4444; }

/* ============================================
   BRANDS CAROUSEL
   ============================================ */
.gb-brand-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s;
    margin: 4px;
}
.gb-brand-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.gb-brand-card img {
    max-height: 50px;
    max-width: 120px;
    object-fit: contain;
}

/* ============================================
   FOOTER
   ============================================ */
.gb-footer {
    background: #1a252f;
    color: #d1d5db;
    padding-top: 48px;
    margin-top: 40px;
}
.gb-footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 32px;
}
.gb-footer-logo img {
    height: 55px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(1.2);
}
.gb-footer-contact-label {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 4px;
}
.gb-footer-phone {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}
.gb-footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}
.gb-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 15px;
    text-decoration: none;
    transition: transform 0.2s;
}
.gb-social-btn:hover { transform: scale(1.1); color: white; }
.gb-social-btn.fb { background: #1877f2; }
.gb-social-btn.tw { background: #1da1f2; }
.gb-social-btn.yt { background: #ff0000; }
.gb-social-btn.li { background: #0077b5; }
.gb-social-btn.ig { background: linear-gradient(135deg, #f09433,#e6683c,#dc2743,#cc2366,#bc1888); }

.gb-footer-col h6 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: white;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gb-orange);
    display: inline-block;
}
.gb-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.gb-footer-links a {
    color: #9ca3af;
    font-size: 13.5px;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.gb-footer-links a::before {
    content: '›';
    color: var(--gb-orange);
    font-size: 16px;
    line-height: 1;
}
.gb-footer-links a:hover { color: var(--gb-orange); }

.gb-footer-payment-title {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 12px;
}
.gb-footer-payment-logos {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.gb-footer-payment-logos img {
    height: 32px;
    border-radius: 4px;
}

.gb-footer-bottom {
    background: #111820;
    text-align: center;
    padding: 14px 20px;
    font-size: 13px;
    color: #6b7280;
    margin-top: 40px;
}

/* ============================================
   CALL TO ORDER BUTTONS (WhatsApp/Call)
   ============================================ */
.gb-whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 52px;
    height: 52px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    z-index: 9998;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    text-decoration: none;
    transition: transform 0.2s;
}
.gb-whatsapp-float:hover { transform: scale(1.1); color: white; }

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.gb-product-detail {
    background: white;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.gb-product-detail-img-main {
    border: 1.5px solid #f3f4f6;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    min-height: 380px;
}
.gb-product-detail-img-main img {
    max-height: 340px;
    object-fit: contain;
    cursor: zoom-in;
}
.gb-product-detail-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.gb-product-detail-thumb {
    width: 80px;
    height: 80px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s;
}
.gb-product-detail-thumb:hover, .gb-product-detail-thumb.active {
    border-color: var(--gb-orange);
}
.gb-product-detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.gb-product-detail-name {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}
.gb-product-detail-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--gb-orange);
}
.gb-detail-qty-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
}
.gb-qty-label { font-size: 15px; font-weight: 600; color: #374151; }
.gb-qty-control {
    display: flex;
    align-items: center;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}
.gb-qty-btn {
    width: 38px;
    height: 38px;
    background: #f9fafb;
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.gb-qty-btn:hover { background: #f3f4f6; }
.gb-qty-input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 600;
    outline: none;
}
.gb-detail-action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}
.gb-btn-add-cart-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px;
    background: var(--gb-orange);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.gb-btn-add-cart-detail:hover { background: var(--gb-orange-dark); }
.gb-btn-buy-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px;
    background: var(--gb-dark);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.gb-btn-buy-detail:hover { background: #2d3748; }
.gb-btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px;
    background: #25d366;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}
.gb-btn-whatsapp:hover { background: #1ea855; color: white; }
.gb-btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px;
    background: #3b5998;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}
.gb-btn-call:hover { background: #2d4373; color: white; }
.gb-brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-top: 12px;
}
.gb-brand-badge img { max-height: 24px; }

/* Breadcrumb */
.gb-breadcrumb {
    margin-bottom: 16px;
    font-size: 13px;
    color: #6b7280;
}
.gb-breadcrumb a { color: #6b7280; text-decoration: none; }
.gb-breadcrumb a:hover { color: var(--gb-orange); }
.gb-breadcrumb span { margin: 0 6px; }

/* ============================================
   CART DRAWER (orange theme)
   ============================================ */
#cartDrawer .cart-drawer-header-new {
    background: var(--gb-orange) !important;
}

/* ============================================
   OWL CAROUSEL DOTS ORANGE
   ============================================ */
.gb-products-carousel .owl-dot span,
.owl-carousel.gb-owl .owl-dot span {
    background: #e5e7eb !important;
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    margin: 0 4px !important;
    transition: all 0.3s !important;
    display: block !important;
}
.gb-products-carousel .owl-dot.active span,
.owl-carousel.gb-owl .owl-dot.active span {
    background: var(--gb-orange) !important;
    transform: scale(1.2) !important;
}
.gb-products-carousel .owl-dots,
.owl-carousel.gb-owl .owl-dots {
    text-align: center !important;
    margin-top: 16px !important;
}

/* OWL NAV arrows */
.gb-products-carousel .owl-nav button,
.owl-carousel.gb-owl .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white !important;
    border: 1px solid #e5e7eb !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    transition: all 0.2s !important;
    font-size: 16px !important;
    color: #374151 !important;
}
.gb-products-carousel .owl-nav button:hover,
.owl-carousel.gb-owl .owl-nav button:hover {
    background: var(--gb-orange) !important;
    color: white !important;
    border-color: var(--gb-orange) !important;
}
.gb-products-carousel .owl-nav .owl-prev,
.owl-carousel.gb-owl .owl-nav .owl-prev { left: -18px !important; }
.gb-products-carousel .owl-nav .owl-next,
.owl-carousel.gb-owl .owl-nav .owl-next { right: -18px !important; }

/* ============================================
   SEARCH SUGGESTIONS
   ============================================ */
.gb-search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 9999;
    max-height: 360px;
    overflow-y: auto;
    border: 1px solid #e5e7eb;
    display: none;
}
.gb-search-suggestions.show { display: block; }
.gb-suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.15s;
    text-decoration: none;
    color: var(--gb-text);
}
.gb-suggestion-item:hover { background: var(--gb-orange-light); color: var(--gb-orange); }
.gb-suggestion-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 6px;
    background: #fafafa;
    border: 1px solid #f3f4f6;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .gb-products-grid { grid-template-columns: repeat(4, 1fr); }
    .gb-footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
    .gb-bestsell-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .gb-header-inner { flex-wrap: wrap; gap: 12px; }
    .gb-logo { width: 120px; }
    .gb-logo img { height: 42px; }
    .gb-search-wrap { order: 3; flex: 0 0 100%; max-width: 100%; }
    .gb-header-actions { gap: 14px; }
    .gb-nav-bar { display: none; }
    .gb-products-grid { grid-template-columns: repeat(2, 1fr); }
    .gb-footer-grid { grid-template-columns: 1fr 1fr; }
    .gb-bestsell-grid { grid-template-columns: 1fr; }
    .gb-bestsell-name { font-size: 14px; }
    .gb-bestsell-price { font-size: 16px; }
    .gb-bestsell-img img { max-height: 130px; }
}

@media (max-width: 576px) {
    .gb-products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .gb-container { padding: 0 12px; }
    .gb-footer-grid { grid-template-columns: 1fr; }
    .gb-section-title { font-size: 20px; }
    .gb-bestsell-badge { font-size: 10px; padding: 3px 8px; }
    .gb-detail-action-grid { grid-template-columns: 1fr; }
}

/* Owl Carousel Custom Nav (Orange Circles) */
.owl-carousel { position: relative; }
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
    margin-top: 0 !important;
}
.owl-prev, .owl-next {
    width: 40px;
    height: 40px;
    background: var(--gb-orange) !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
    transition: all 0.3s !important;
    border: none !important;
    opacity: 0.9;
}
.owl-prev:hover, .owl-next:hover {
    background: var(--gb-orange-dark) !important;
    transform: scale(1.1);
    opacity: 1;
}
.owl-prev { margin-left: -20px; }
.owl-next { margin-right: -20px; }
.owl-nav button.owl-prev, .owl-nav button.owl-next {
    font-size: 14px !important;
}
