/* ============================================================
   MAIN.CSS — All Pages Combined Stylesheet
   opentelesale.com / ShopKar.pk
   ============================================================ */

/* ============================================================
   RESET + ROOT VARIABLES
   ============================================================ */
*, *::before, *::after {
    margin: 0; padding: 0; box-sizing: border-box;
}
:root {
    --primary:       #2563eb;
    --primary-dark:  #1d4ed8;
    --secondary:     #dc2626;
    --accent:        #7c3aed;
    --light:         #f8fafc;
    --dark:          #0f172a;
    --dark-card:     #1e293b;
    --success:       #16a34a;
    --gray:          #64748b;
    --light-gray:    #e2e8f0;
    --text:          #334155;
    --text-light:    #f1f5f9;
    --gold:          #f59e0b;
    --whatsapp-color:#25D366;
    --glass-bg:      rgba(255,255,255,0.7);
    --glass-border:  rgba(255,255,255,0.3);
    --glass-shadow:  0 8px 32px rgba(0,0,0,0.08);
    --shadow:        0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
    --shadow-lg:     0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -2px rgba(0,0,0,.05);
}
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', 'Poppins', sans-serif;
    background-color: #f9fafb;
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* ============================================================
   HIDE OLD BOOTSTRAP NAVBAR
   ============================================================ */
.navbar-top, .navbar-top-4,
.osahan-menu, .osahan-menu-top-4, .osahan-menu-4 {
    display: none !important;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}
@keyframes pulse {
    0%   { transform: scale(1);    box-shadow: 0 0 0 0   rgba(37,211,102,0.7); }
    70%  { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(37,211,102,0); }
    100% { transform: scale(1);    box-shadow: 0 0 0 0   rgba(37,211,102,0); }
}
@keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
}

/* ============================================================
   TOP INFO BAR
   ============================================================ */
.top-info-bar {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--text-light);
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 10;
}
.top-info-bar::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37,99,235,0.5), transparent);
}
.top-info-bar a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}
.top-info-bar a:hover { color: #60a5fa; transform: translateX(3px); }
.top-info-bar i { margin-right: 8px; font-size: 13px; color: #60a5fa; }

/* ============================================================
   HEADER
   ============================================================ */
header {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 5%;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    animation: fadeInDown 0.6s ease-out;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
}
.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    max-width: 230px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 5px;
}
nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
    position: relative;
    padding: 8px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
}
nav ul li a:hover {
    color: var(--primary);
    background: rgba(37,99,235,0.06);
}
nav ul li a::after {
    content: '';
    position: absolute;
    width: 0; height: 2px;
    bottom: 2px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    transition: width 0.3s;
}
nav ul li a:hover::after { width: 60%; }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-content {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 260px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border-radius: 16px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255,255,255,0.5);
    overflow: hidden;
    padding: 8px;
}
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-content a {
    display: flex;
    align-items: center;
    padding: 11px 16px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.2s;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
}
.dropdown-content a:hover {
    background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(124,58,237,0.08));
    color: var(--primary);
    padding-left: 22px;
}
.dropdown-content a i {
    margin-right: 10px;
    font-size: 11px;
    color: var(--gray);
    transition: color 0.2s;
}
.dropdown-content a:hover i { color: var(--primary); }

/* ============================================================
   HEADER ICONS
   ============================================================ */
.header-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}
.header-icons a,
.header-icons .icon-btn {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    color: var(--dark);
    font-size: 17px;
    border-radius: 12px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    background: none;
    text-decoration: none;
}
.header-icons a:hover,
.header-icons .icon-btn:hover {
    color: var(--primary);
    background: rgba(37,99,235,0.08);
    transform: translateY(-2px);
}
.menu-toggle { display: none !important; }

/* ============================================================
   OVERLAY
   ============================================================ */
.overlay {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0; visibility: hidden;
    transition: all 0.3s;
}
.overlay.active { opacity: 1; visibility: visible; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar {
    position: fixed; top: 0; right: -320px;
    width: 320px; height: 100vh;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    z-index: 1001;
    padding: 30px 24px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}
.sidebar.active { right: 0; }
.sidebar-close {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px; cursor: pointer;
    color: var(--dark); background: rgba(0,0,0,0.04);
    transition: all 0.3s; border: none; font-size: 18px;
}
.sidebar-close:hover { background: rgba(220,38,38,0.1); color: var(--secondary); }
.sidebar h3 {
    font-size: 22px; font-weight: 800;
    margin-top: 20px; margin-bottom: 24px;
    color: var(--dark);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sidebar-links { list-style: none; }
.sidebar-links li { margin-bottom: 6px; }
.sidebar-links a {
    text-decoration: none; color: var(--dark); font-weight: 500;
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px; border-radius: 12px;
    transition: all 0.3s; font-size: 15px;
}
.sidebar-links a:hover {
    background: rgba(37,99,235,0.08);
    color: var(--primary);
    padding-left: 22px;
}
.sidebar-links a i { width: 20px; text-align: center; color: var(--gray); font-size: 15px; }
.sidebar-links a:hover i { color: var(--primary); }
.sidebar-dropdown-btn {
    display: flex; justify-content: space-between; align-items: center;
    width: 100%; padding: 12px 16px;
    background: none; border: none; text-align: left;
    font-weight: 500; color: var(--dark); cursor: pointer;
    font-size: 15px; border-radius: 12px; transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}
.sidebar-dropdown-btn:hover { background: rgba(37,99,235,0.08); }
.sidebar-dropdown-btn span { display: flex; align-items: center; gap: 12px; }
.sidebar-dropdown-btn span i { width: 20px; text-align: center; color: var(--gray); }
.sidebar-dropdown-content {
    padding-left: 20px; max-height: 0;
    overflow: hidden; transition: max-height 0.4s ease;
}
.sidebar-dropdown-content.active { max-height: 600px; }
.sidebar-dropdown-content a {
    display: flex; padding: 10px 16px;
    color: var(--gray); text-decoration: none;
    transition: all 0.3s; font-size: 13px;
    border-radius: 10px; font-weight: 500;
}
.sidebar-dropdown-content a:hover {
    color: var(--primary);
    background: rgba(37,99,235,0.06);
    padding-left: 22px;
}

/* ============================================================
   SEARCH MODAL
   ============================================================ */
.search-modal {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(15,23,42,0.85);
    backdrop-filter: blur(8px);
    z-index: 1002;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 100px;
    opacity: 0; visibility: hidden;
    transition: all 0.3s;
}
.search-modal.active { opacity: 1; visibility: visible; }
.search-container {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    width: 90%; max-width: 620px;
    border-radius: 24px;
    padding: 32px;
    position: relative;
    transform: translateY(-50px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 80px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.3);
}
.search-modal.active .search-container { transform: translateY(0) scale(1); }
.search-close {
    position: absolute; top: 16px; right: 16px;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; cursor: pointer;
    color: var(--gray); border-radius: 10px;
    background: rgba(0,0,0,0.04);
    border: none; transition: all 0.3s;
}
.search-close:hover { background: rgba(220,38,38,0.1); color: var(--secondary); }
.search-container h2 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
.search-form {
    display: flex; width: 100%;
    border-radius: 14px; overflow: hidden;
    border: 2px solid var(--light-gray);
    transition: border-color 0.3s;
}
.search-form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
}
.search-input {
    flex-grow: 1; padding: 16px 20px;
    border: none; outline: none;
    font-size: 15px; font-family: 'Inter', sans-serif;
    background: transparent;
}
.search-button {
    padding: 0 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff; border: none; cursor: pointer;
    transition: all 0.3s; font-size: 16px;
}
.search-button:hover { background: linear-gradient(135deg, var(--secondary), #ef4444); }

/* ============================================================
   BOTTOM NAV (Mobile)
   ============================================================ */
.bottom-nav {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.08);
    z-index: 999; display: none;
    padding: 8px 0;
    padding-bottom: env(safe-area-inset-bottom, 8px);
    border-top: 1px solid rgba(226,232,240,0.4);
}
.bottom-nav-items {
    display: flex; justify-content: space-around;
    list-style: none; width: 100%;
}
.bottom-nav-item {
    display: flex; flex-direction: column; align-items: center;
    text-decoration: none; color: var(--gray);
    font-size: 10px; font-weight: 600;
    transition: all 0.3s; flex: 1; padding: 6px 0;
    gap: 4px; position: relative;
}
.bottom-nav-item i { font-size: 20px; transition: all 0.3s; }
.bottom-nav-item.active { color: var(--primary); }
.bottom-nav-item.active::before {
    content: ''; position: absolute; top: -8px;
    width: 30px; height: 3px;
    background: var(--primary); border-radius: 0 0 3px 3px;
}
.bottom-nav-item:hover { color: var(--primary); }
.bottom-nav-item:hover i { transform: translateY(-2px); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
    position: fixed; bottom: 90px; left: 20px;
    width: 56px; height: 56px;
    background: #25d366; color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; z-index: 998; text-decoration: none;
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
    transition: all 0.3s;
    animation: float 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 35px rgba(37,211,102,0.5); }

/* ============================================================
   SCROLL TOP
   ============================================================ */
.scroll-top {
    position: fixed; bottom: 90px; right: 20px;
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff; border: none; border-radius: 14px; cursor: pointer;
    font-size: 18px; display: flex; align-items: center; justify-content: center;
    z-index: 998; opacity: 0; visibility: hidden;
    transform: translateY(20px); transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(37,99,235,0.3);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(37,99,235,0.4); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
    color: #f1f5f9;
    padding: 60px 5% 25px;
    margin-top: 30px;
    position: relative;
    font-family: 'Inter', sans-serif;
}
footer::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37,99,235,0.5), rgba(124,58,237,0.5), transparent);
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-column h3 {
    font-size: 17px; margin-bottom: 22px;
    position: relative; padding-bottom: 14px;
    color: #fff; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.footer-column h3::after {
    content: '';
    position: absolute; width: 40px; height: 3px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    bottom: 0; left: 0; border-radius: 2px;
}
.footer-column p {
    line-height: 1.8; color: #94a3b8;
    font-size: 14px; margin-bottom: 20px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: #94a3b8; text-decoration: none;
    transition: all 0.3s; display: flex;
    align-items: center; font-size: 14px;
    padding: 3px 0; gap: 0;
}
.footer-links a::before {
    content: ''; width: 0; height: 2px;
    background: #2563eb; margin-right: 0;
    transition: all 0.3s; border-radius: 1px;
    display: inline-block; vertical-align: middle;
}
.footer-links a:hover { color: #fff; padding-left: 8px; }
.footer-links a:hover::before { width: 12px; margin-right: 10px; }
.footer-contact-info { list-style: none; padding: 0; margin: 0; }
.footer-contact-info .media {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 16px; color: #94a3b8; font-size: 14px;
}
.footer-contact-info .media i {
    color: #2563eb; font-size: 15px;
    min-width: 18px; margin-top: 2px;
}
.footer-contact-info .media .media-body strong {
    color: #cbd5e1; display: block; margin-bottom: 2px;
    font-size: 13px; text-transform: uppercase; letter-spacing: 0.3px;
}
.footer-contact-info .media .media-body a {
    color: #94a3b8; text-decoration: none; transition: color 0.3s;
}
.footer-contact-info .media .media-body a:hover { color: #60a5fa; }
.social-icons { display: flex; gap: 10px; margin-top: 20px; }
.social-icons a {
    display: flex; justify-content: center; align-items: center;
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.06);
    border-radius: 12px; color: #94a3b8;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.06);
    font-size: 16px; text-decoration: none;
}
.social-icons a:hover {
    background: #2563eb; color: #fff;
    transform: translateY(-4px); border-color: #2563eb;
    box-shadow: 0 8px 25px rgba(37,99,235,0.3);
}
.footer-copyright {
    text-align: center; padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: #475569; font-size: 13px;
}
.footer-copyright a {
    color: #60a5fa; text-decoration: none;
    font-weight: 600; transition: color 0.3s;
}
.footer-copyright a:hover { color: #93c5fd; }

/* ============================================================
   HOME PAGE — HERO SLIDER
   ============================================================ */
.sk-hero-slider {
    width: 100%; display: block; overflow: hidden;
    background: #fff; margin: 0 !important; padding: 0 !important;
    line-height: 0; font-size: 0;
}
.sk-hero-slider * { line-height: normal; font-size: initial; }
.sk-hero-swiper { width: 100%; margin: 0; padding: 0; }
.sk-hero-swiper .swiper-slide { display: flex; width: 100%; margin: 0; padding: 0; line-height: 0; }
.sk-hero-img { width: 100%; height: auto; object-fit: cover; display: block; margin: 0; padding: 0; }
.sk-hero-swiper .swiper-pagination-bullet {
    background: rgba(0,0,0,.2); width: 10px; height: 10px; opacity: 1; transition: all .3s;
}
.sk-hero-swiper .swiper-pagination-bullet-active {
    background: var(--primary); width: 28px; border-radius: 5px;
}
.sk-hero-swiper .swiper-button-next,
.sk-hero-swiper .swiper-button-prev {
    color: #fff; background: rgba(15,23,42,.45);
    backdrop-filter: blur(10px); width: 48px; height: 48px;
    border-radius: 14px; border: 1px solid rgba(255,255,255,.15); transition: all .3s;
}
.sk-hero-swiper .swiper-button-next:hover,
.sk-hero-swiper .swiper-button-prev:hover { background: rgba(15,23,42,.75); transform: scale(1.08); }
.sk-hero-swiper .swiper-button-next::after,
.sk-hero-swiper .swiper-button-prev::after { font-size: 18px; font-weight: 700; }

/* ============================================================
   HOME PAGE — SECTIONS
   ============================================================ */
.sk-section { padding: 50px 5% 40px; position: relative; }
.sk-section--gray   { background: linear-gradient(180deg,#f8fafc 0%,#f1f5f9 100%); }
.sk-section--white  { background: #fff; }
.sk-section--purple { background: linear-gradient(180deg,#faf5ff 0%,#f8fafc 100%); }
.sk-section-header { text-align: center; margin-bottom: 36px; }
.sk-section-title {
    font-size: 2rem; color: var(--dark-card); font-weight: 800;
    letter-spacing: -.5px; display: inline-block; margin-bottom: 6px;
}
.sk-section-title span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.sk-title-line {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px; margin: 10px auto;
}
.sk-section-sub { color: var(--gray); font-size: 15px; margin-bottom: 14px; }
.sk-view-all {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--primary); text-decoration: none; font-weight: 600; font-size: 14px;
    padding: 8px 20px; border-radius: 10px;
    border: 2px solid rgba(37,99,235,.15); transition: all .3s;
}
.sk-view-all:hover {
    background: var(--primary); color: #fff;
    border-color: var(--primary); transform: translateX(4px);
}

/* ============================================================
   PRODUCT CARD — SHARED (Home Swiper + Category + Search + Tags)
   ============================================================ */
.sk-card, .product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
}
.sk-card:hover, .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
}
.sk-card__img-wrap, .product-img {
    width: 100%; height: 280px; overflow: hidden;
    position: relative; background: #fafafa;
}
.sk-card__img-wrap a, .product-img a { display: block; width: 100%; height: 100%; }
.sk-card__img-wrap img, .product-img img {
    width: 100%; height: 100%;
    object-fit: contain; padding: 10px;
    opacity: 0;
    transition: opacity .4s ease, transform .5s;
}
.sk-card__img-wrap img.sk-loaded,
.product-img img.lazy-loaded { opacity: 1; }
.sk-card:hover .sk-card__img-wrap img,
.product-card:hover .product-img img { transform: scale(1.1); }
.sk-badge, .product-tag {
    position: absolute; top: 10px; left: 10px;
    background: var(--secondary); color: #fff;
    padding: 5px 10px; border-radius: 30px;
    font-size: 12px; font-weight: 500;
}
.sk-card__body, .product-info {
    padding: 20px; display: flex; flex-direction: column; flex: 1;
}
.sk-card__title, .product-title { margin-bottom: 10px; }
.sk-card__title a, .product-title a {
    font-size: 15px; font-weight: 600; color: var(--dark-card);
    text-decoration: none; display: block;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    transition: color .3s;
}
.sk-card__title a:hover, .product-title a:hover { color: var(--primary); }
.sk-card__price, .product-price {
    display: flex; align-items: center; gap: 8px; margin-bottom: 12px; flex-wrap: wrap;
}
.sk-price-current, .card-current-price { font-size: 18px; font-weight: 700; color: var(--primary); }
.sk-price-old, .card-old-price { font-size: 14px; text-decoration: line-through; color: var(--gray); }
.card-discount { font-size: 12px; font-weight: 700; color: var(--secondary); }
.sk-card__rating, .product-rating {
    display: flex; align-items: center; gap: 4px; margin-bottom: 15px;
}
.sk-stars, .stars { display: flex; gap: 1px; }
.sk-stars i, .stars i { color: var(--gold); font-size: 13px; }
.sk-reviews, .reviews-count { color: var(--gray); font-size: 13px; margin-left: 4px; }
.sk-btn-cart, .add-to-cart {
    display: block; width: 100%; padding: 11px;
    background: var(--primary); color: #fff;
    border: none; border-radius: 5px;
    cursor: pointer; font-weight: 600; font-size: 14px;
    text-align: center; text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: background .3s;
    margin-top: auto;
}
.sk-btn-cart:hover, .add-to-cart:hover { background: var(--secondary); color: #fff; }

/* Product Swiper Nav */
.sk-product-swiper .swiper-button-next,
.sk-product-swiper .swiper-button-prev {
    color: var(--primary); background: #fff;
    width: 40px; height: 40px; border-radius: 50%;
    box-shadow: var(--shadow); transition: all .3s;
    border: 1px solid var(--light-gray);
}
.sk-product-swiper .swiper-button-next:hover,
.sk-product-swiper .swiper-button-prev:hover {
    background: var(--primary); color: #fff; border-color: var(--primary);
}
.sk-product-swiper .swiper-button-next::after,
.sk-product-swiper .swiper-button-prev::after { font-size: 14px; font-weight: 800; }

/* ============================================================
   PAGE HERO + BREADCRUMB (Shop/Category/Search/Tags)
   ============================================================ */
.sk-page-hero {
    background: var(--light);
    padding: 18px 5% 36px;
    border-bottom: 1px solid var(--light-gray);
    text-align: center;
}
.sk-page-hero__inner { max-width: 1400px; margin: 0 auto; }
.sk-breadcrumb { margin-bottom: 20px; }
.sk-breadcrumb__list {
    display: flex; align-items: center;
    justify-content: flex-start;
    gap: 6px; list-style: none; margin: 0; padding: 0;
}
.sk-breadcrumb__item a {
    color: var(--gray); text-decoration: none;
    font-size: 14px; font-weight: 500; transition: color .25s;
}
.sk-breadcrumb__item a:hover { color: var(--primary); }
.sk-breadcrumb__sep {
    color: #94a3b8; font-size: 10px; display: flex; align-items: center;
}
.sk-breadcrumb__item--active { color: var(--dark-card); font-size: 14px; font-weight: 600; }
.sk-page-title-wrap { text-align: center; padding-bottom: 12px; }
.sk-page-title {
    font-size: 1.75rem; font-weight: 800;
    color: var(--dark-card); letter-spacing: -.3px;
    margin: 0; display: inline-block; position: relative; padding-bottom: 12px;
}
.sk-page-title span { color: var(--dark-card); }
.sk-page-title::after {
    content: ''; position: absolute; bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 70px; height: 3px;
    background: var(--secondary); border-radius: 2px;
}

/* Results Grid */
.sk-results-section {
    padding: 40px 5% 60px;
    background: var(--light);
    min-height: 60vh;
}
.sk-results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

/* No Results */
.sk-no-results {
    grid-column: 1 / -1; text-align: center;
    padding: 80px 20px;
    background: rgba(255,255,255,.8);
    border-radius: 24px;
    border: 2px dashed var(--light-gray);
}
.sk-no-results__icon {
    width: 90px; height: 90px; border-radius: 50%;
    background: linear-gradient(135deg,rgba(37,99,235,.1),rgba(124,58,237,.1));
    display: flex; align-items: center; justify-content: center;
    font-size: 36px; color: var(--primary); margin: 0 auto 24px;
}
.sk-no-results h2 { font-size: 1.6rem; font-weight: 800; color: var(--dark-card); margin-bottom: 10px; }
.sk-no-results p  { color: var(--gray); font-size: 15px; margin-bottom: 28px; }
.sk-btn-home {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; background: var(--primary);
    color: #fff; border-radius: 5px; text-decoration: none;
    font-weight: 700; font-size: 15px; transition: background .3s;
}
.sk-btn-home:hover { background: var(--secondary); }

/* Load More (Shop page) */
.sk-load-more-wrap { text-align: center; margin-top: 40px; padding-bottom: 10px; }
.sk-load-more-btn {
    display: inline-flex; align-items: center;
    justify-content: center; gap: 10px;
    padding: 16px 52px; background: var(--primary);
    color: #fff; border: none; border-radius: 8px;
    font-size: 16px; font-weight: 700; cursor: pointer;
    box-shadow: var(--shadow); transition: all .3s;
    min-width: 200px; font-family: 'Poppins', sans-serif;
}
.sk-load-more-btn:hover {
    background: var(--secondary); transform: translateY(-2px); box-shadow: var(--shadow-lg);
}
.sk-load-more-btn:disabled { opacity: .8; cursor: not-allowed; transform: none; }
.sk-load-more-btn .btn-text,
.sk-load-more-btn .btn-loading { display: inline-flex; align-items: center; gap: 8px; }
.sk-load-more-hint { margin-top: 10px; color: #94a3b8; font-size: 13px; font-weight: 500; }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.breadcrumb { padding: 15px 5%; background: var(--light); font-size: 14px; border-bottom: 1px solid var(--light-gray); }
.breadcrumb ul { list-style: none; display: flex; align-items: center; flex-wrap: wrap; }
.breadcrumb li { margin-right: 10px; }
.breadcrumb a { color: var(--gray); text-decoration: none; transition: .3s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb i { margin: 0 5px; color: var(--gray); font-size: 10px; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 15px; }
.products-detail {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 50px; margin-bottom: 80px;
    align-items: start; padding: 40px 0;
}
.products-gallery {
    display: flex; flex-direction: column; align-items: center;
    padding: 20px; width: 100%; position: relative;
}
.main-products-image {
    width: 100%; max-width: 600px; height: 600px;
    border-radius: 12px; overflow: hidden; box-shadow: var(--shadow);
    background: #fff; display: flex; align-items: center; justify-content: center; margin: 0 auto;
}
.main-products-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .5s; }
.main-products-image:hover img { transform: scale(1.05); }
.products-info {
    padding: 20px; display: flex; flex-direction: column; justify-content: center; width: 100%;
}
.products-title { font-size: 30px; font-weight: 700; margin-bottom: 15px; color: var(--dark-card); line-height: 1.3; }
.products-meta { display: flex; align-items: center; margin-bottom: 25px; flex-wrap: wrap; gap: 15px; }
.products-rating { display: flex; align-items: center; }
.products-rating i { color: #ffc107; font-size: 16px; margin-right: 3px; }
.products-rating span { font-size: 14px; color: var(--gray); margin-left: 8px; }
.products-review-count { font-size: 14px; color: var(--gray); }
.products-stock { color: var(--success); font-weight: 500; }
.products-stock.out { color: var(--secondary); }
.products-price { display: flex; align-items: center; margin-bottom: 25px; flex-wrap: wrap; gap: 15px; }
.current-price { font-size: 28px; font-weight: 700; color: var(--primary); }
.old-price { font-size: 18px; text-decoration: line-through; color: var(--gray); }
.discount { background: var(--secondary); color: #fff; padding: 4px 10px; border-radius: 5px; font-size: 14px; font-weight: 600; }
.products-description { margin-bottom: 30px; color: var(--gray); line-height: 1.8; font-size: 15px; }
.short-details { margin-bottom: 30px; border: 1px solid var(--light-gray); border-radius: 8px; overflow: hidden; background: #fff; }
.short-details table { width: 100%; border-collapse: collapse; }
.short-details tr:nth-child(even) { background-color: var(--light); }
.short-details td { padding: 12px 15px; border-bottom: 1px solid var(--light-gray); }
.short-details td:first-child { font-weight: 600; width: 40%; color: var(--dark-card); }
.short-details td:last-child { color: var(--gray); }
.short-details tr:last-child td { border-bottom: none; }
.short-details td i { margin-right: 8px; color: var(--primary); }
.short-details td a { color: var(--primary); }
.short-details td a:hover { text-decoration: underline; }
.products-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 30px; }
.add-to-cart-btn, .whatsapp-btn {
    color: #fff; border: none; border-radius: 8px; padding: 16px 25px;
    font-size: 16px; font-weight: 600; cursor: pointer;
    transition: all .3s ease; display: flex; align-items: center;
    justify-content: center; gap: 10px; height: 56px; width: 100%;
    text-decoration: none; font-family: 'Poppins', sans-serif;
}
.add-to-cart-btn:hover, .whatsapp-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.add-to-cart-btn { background: var(--primary); }
.add-to-cart-btn:hover { background: #1d4ed8; color: #fff; }
.whatsapp-btn { background: var(--whatsapp-color); }
.whatsapp-btn:hover { background: #128c7e; color: #fff; }
.pulse-btn { animation: pulse 2s infinite; }
.alert-success { background: #dff0d8; border: 1px solid #d6e9c6; color: #3c763d; padding: 15px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; }

/* Tabs */
.products-tabs { margin-bottom: 80px; }
.tabs-header { display: flex; border-bottom: 2px solid var(--light-gray); margin-bottom: 40px; flex-wrap: wrap; }
.tab-btn {
    padding: 15px 30px; font-size: 16px; font-weight: 600;
    color: var(--gray); background: none; border: none; cursor: pointer;
    transition: all .3s ease; position: relative; font-family: 'Poppins', sans-serif;
}
.tab-btn.active, .tab-btn:hover { color: var(--primary); }
.tab-btn.active::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 100%; height: 3px; background: var(--primary); border-radius: 3px 3px 0 0;
}
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn .5s ease; }
.description-content h1, .description-content h2, .description-content h3 { color: var(--dark-card); margin: 20px 0 10px; }
.description-content p { margin-bottom: 15px; line-height: 1.7; color: var(--gray); }
.description-content ul, .description-content ol { padding-left: 25px; margin-bottom: 15px; }
.description-content li { margin-bottom: 8px; color: var(--gray); list-style: inherit; }
.products-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 25px; }
.products-tag {
    background: var(--light); color: var(--dark-card); padding: 8px 18px;
    border-radius: 30px; font-size: 14px; font-weight: 500;
    transition: all .3s ease; border: 1px solid var(--light-gray);
}
.products-tag:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

/* Reviews */
.reviews-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.review-item {
    background: #fff; padding: 25px; border-radius: 12px;
    box-shadow: var(--shadow); margin-bottom: 20px;
    display: flex; gap: 20px; transition: transform .3s ease;
}
.review-item:hover { transform: translateY(-5px); }
.review-author-avatar {
    width: 60px; height: 60px; border-radius: 50%;
    background: var(--primary); display: flex; align-items: center;
    justify-content: center; color: #fff; font-weight: 600;
    font-size: 20px; flex-shrink: 0; text-transform: uppercase;
}
.review-content { flex: 1; }
.review-header { display: flex; justify-content: space-between; margin-bottom: 15px; flex-wrap: wrap; gap: 10px; }
.reviewer-name { font-weight: 600; color: var(--dark-card); font-size: 16px; }
.review-date { color: var(--gray); font-size: 14px; }
.verified-badge { font-size: 11px; color: var(--success); display: flex; align-items: center; gap: 4px; margin-bottom: 8px; }
.review-rating { margin-bottom: 15px; }
.review-rating i { color: #ffc107; font-size: 16px; margin-right: 3px; }
.review-text { color: var(--gray); line-height: 1.7; font-size: 15px; }
.review-form { background: #fff; padding: 35px; border-radius: 12px; box-shadow: var(--shadow); width: 100%; }
.review-form h3 { margin-bottom: 25px; font-size: 22px; color: var(--dark-card); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--dark-card); font-size: 14px; }
.form-control {
    width: 100%; padding: 12px 15px; border: 1px solid var(--light-gray);
    border-radius: 8px; font-size: 15px; transition: all .3s ease;
    font-family: 'Poppins', sans-serif; outline: none; background: #fff; color: var(--dark-card);
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,.15); }
textarea.form-control { min-height: 140px; resize: vertical; }
.submit-btn {
    background: var(--primary); color: #fff; border: none; border-radius: 8px;
    padding: 14px 30px; font-size: 16px; font-weight: 600; cursor: pointer;
    transition: all .3s ease; width: 100%; font-family: 'Poppins', sans-serif;
}
.submit-btn:hover { background: var(--secondary); transform: translateY(-2px); }

/* Related Products Section */
.featured-products { padding: 40px 5% 30px; position: relative; background: var(--light); }
.section-title { text-align: center; margin-bottom: 30px; position: relative; }
.section-title h2 {
    font-size: 2.2rem; color: var(--dark-card); margin-bottom: 10px;
    position: relative; display: inline-block;
}
.section-title h2::after {
    content: ''; position: absolute; width: 50%; height: 3px;
    background: var(--secondary); bottom: -10px; left: 25%;
}
.section-title p { color: var(--gray); max-width: 700px; margin: 0 auto 15px; }
.featured-swiper { padding: 10px 4px 40px; }
.featured-swiper .swiper-button-next,
.featured-swiper .swiper-button-prev {
    color: var(--primary); background: #fff;
    width: 40px; height: 40px; border-radius: 50%; box-shadow: var(--shadow);
}
.featured-swiper .swiper-button-next::after,
.featured-swiper .swiper-button-prev::after { font-size: 14px; font-weight: 800; }

/* ============================================================
   SHARED — SCROLL ANIMATION
   ============================================================ */
.animate-on-scroll {
    opacity: 0; transform: translateY(30px);
    transition: opacity .5s ease-out, transform .5s ease-out;
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .sk-results-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 992px) {
    nav ul { display: none; }
    .menu-toggle { display: flex !important; }
    .bottom-nav { display: block; }
    .whatsapp-float { bottom: 90px; }
    .scroll-top { bottom: 90px; }
    .sk-section-title { font-size: 1.6rem; }
}
@media (max-width: 900px) {
    .sk-results-grid { grid-template-columns: repeat(2,1fr); gap: 18px; }
}
@media (max-width: 768px) {
    .header-container { height: 60px; }
    .logo img { height: 40px; max-width: 170px; }
    .top-info-bar { flex-direction: row; font-size: 12px; }
    footer { padding: 40px 4% 80px; }
    .footer-content { grid-template-columns: 1fr 1fr; gap: 30px; }
    .products-detail { grid-template-columns: 1fr; gap: 30px; }
    .reviews-container { grid-template-columns: 1fr; }
    .products-actions { grid-template-columns: 1fr; }
    .main-products-image { height: 400px; }
    .sk-card__img-wrap, .product-img { height: 230px; }
    .sk-card__body { padding: 14px; }
    .sk-price-current { font-size: 16px; }
}
@media (max-width: 576px) {
    .top-info-bar { padding: 8px 4%; }
    .footer-content { grid-template-columns: 1fr; }
    .sk-hero-swiper .swiper-button-next,
    .sk-hero-swiper .swiper-button-prev { display: none; }
    .sk-section-title { font-size: 1.4rem; }
    .sk-results-section { padding: 20px 4% 80px; }
    .sk-results-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
    .product-img { height: 190px; }
    .product-info { padding: 12px; }
    .card-current-price { font-size: 16px; }
    .add-to-cart { font-size: 12px; padding: 10px; }
    .sk-load-more-btn { padding: 14px 36px; font-size: 14px; }
    .tab-btn { padding: 12px 20px; font-size: 14px; }
    .main-products-image { height: 300px; }
    .products-title { font-size: 24px; }
    .current-price { font-size: 24px; }
}
@media (max-width: 380px) {
    .sk-results-grid { grid-template-columns: 1fr; }
}