/* styles-security.css - fire & security company */
:root {
    --red: #E63946;
    --red-dark: #B71C1C;
    --red-light: #FF6B75;
    --dark: #1A1A2E;
    --dark-light: #2A2A3E;
    --gray: #4A4A5E;
    --gray-light: #8A8A9E;
    --cream: #F5F5F7;
    --white: #FFFFFF;
    --font-display: 'Exo 2', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }





  /* ============================================ */
/* SHOP COMPLETE STYLES                         */
/* ============================================ */

:root {
    --red: #E63946;
    --red-dark: #B71C1C;
    --dark: #1A1A2E;
    --dark-light: #2A2A3E;
    --cream: #F5F5F7;
    --gray: #6B6B6B;
    --font-display: 'Exo 2', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
}

/* ============================================ */
/* SHOP HERO - shhpg-                          */
/* ============================================ */
.shhpg-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    background: var(--dark);
    overflow: hidden;
}

.shhpg-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.shhpg-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.shhpg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(230, 57, 70, 0.06), transparent 60%),
                radial-gradient(ellipse at 70% 60%, rgba(230, 57, 70, 0.04), transparent 50%);
}

.shhpg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.02) 1px, transparent 1px),
                      radial-gradient(circle at 80% 50%, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

.shhpg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: shhpgOrbFloat 20s ease-in-out infinite;
}

.shhpg-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(230,57,70,0.15);
    top: -10%;
    right: -5%;
}

.shhpg-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(230,57,70,0.08);
    bottom: -10%;
    left: -5%;
    animation-delay: -8s;
}

@keyframes shhpgOrbFloat {
    0%, 100% { transform: translate(0,0) scale(1); }
    33% { transform: translate(30px,-30px) scale(1.1); }
    66% { transform: translate(-20px,20px) scale(0.9); }
}

.shhpg-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    color: white;
}

.shhpg-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: shhpgFadeUp 0.8s ease 0.2s forwards;
}

.shhpg-badge-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: shhpgPulse 2s ease-in-out infinite;
}

@keyframes shhpgPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.shhpg-badge-text {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

.shhpg-badge-line {
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: rgba(255,255,255,0.1);
}

.shhpg-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.shhpg-title-line {
    display: block;
    opacity: 0;
    animation: shhpgReveal 0.8s ease forwards;
    transform: translateY(30px);
}

.shhpg-title-line:nth-child(1) { animation-delay: 0.3s; }
.shhpg-title-line:nth-child(2) { animation-delay: 0.5s; }
.shhpg-title-line:nth-child(3) { animation-delay: 0.7s; }

.shhpg-title-accent {
    color: var(--red);
}

@keyframes shhpgReveal {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes shhpgFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.shhpg-description {
    color: rgba(255,255,255,0.6);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: shhpgFadeUp 0.8s ease 0.9s forwards;
}

.shhpg-actions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: shhpgFadeUp 0.8s ease 1.1s forwards;
}

.shhpg-search {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 60px;
    padding: 0.3rem 0.3rem 0.3rem 1.5rem;
    transition: all 0.3s;
    max-width: 480px;
}

.shhpg-search:focus-within {
    background: rgba(255,255,255,0.08);
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(230,57,70,0.1);
}

.shhpg-search-icon {
    font-size: 1rem;
    opacity: 0.5;
    margin-right: 0.5rem;
}

.shhpg-search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: white;
    font-size: 1rem;
    padding: 0.8rem 0;
    outline: none;
}

.shhpg-search-input::placeholder {
    color: rgba(255,255,255,0.3);
}

.shhpg-search-btn {
    background: var(--red);
    border: none;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.shhpg-search-btn:hover {
    background: var(--red-dark);
    transform: translateX(3px);
}

.shhpg-stats {
    display: flex;
    gap: 3rem;
}

.shhpg-stat {
    display: flex;
    flex-direction: column;
}

.shhpg-stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
}

.shhpg-stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.3rem;
}

.shhpg-categories {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: shhpgFadeUp 0.8s ease 1.3s forwards;
}

.shhpg-categories-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shhpg-categories-list {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.shhpg-category-link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
    padding: 0.3rem 1rem;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50px;
    transition: all 0.3s;
    background: rgba(255,255,255,0.02);
}

.shhpg-category-link:hover {
    background: var(--red);
    color: white;
    border-color: var(--red);
    transform: translateY(-2px);
}

/* Hero Cart Button */
.shhpg-cart-btn-wrapper {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 10;
}

.shhpg-cart-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-body);
}

.shhpg-cart-btn:hover {
    background: var(--red);
    border-color: var(--red);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(230,57,70,0.3);
}

.shhpg-cart-btn svg {
    width: 20px;
    height: 20px;
}

.shhpg-cart-count {
    background: var(--red);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.1rem 0.6rem;
    border-radius: 50px;
    min-width: 20px;
    text-align: center;
}

/* Floating Product Cards */
.shhpg-floating {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shhpg-float-card {
    position: absolute;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    pointer-events: auto;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165,0.84,0.44,1);
    min-width: 200px;
    animation: shhpgFloatCard 6s ease-in-out infinite;
}

.shhpg-float-card:hover {
    transform: scale(1.05) !important;
    background: rgba(255,255,255,0.08);
    border-color: var(--red);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.shhpg-float-1 { top: 15%; right: 5%; }
.shhpg-float-2 { top: 45%; right: 15%; animation-delay: 2s; }
.shhpg-float-3 { bottom: 30%; right: 5%; animation-delay: 4s; }

@keyframes shhpgFloatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.shhpg-float-image {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(230,57,70,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.shhpg-float-icon { font-size: 1.6rem; }
.shhpg-float-name { font-size: 0.85rem; font-weight: 500; color: white; }
.shhpg-float-price { font-size: 0.8rem; color: var(--red); font-weight: 600; }
.shhpg-float-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--red);
    color: white;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 0.15rem 0.6rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.shhpg-float-badge-sale { background: #FF6B35; }
.shhpg-float-badge-new { background: #2E7D32; }

.shhpg-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    z-index: 5;
    opacity: 0.4;
    animation: shhpgFadeUp 0.8s ease 1.5s forwards;
}

.shhpg-scroll-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.3);
}

.shhpg-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
    animation: shhpgScrollPulse 2s ease-in-out infinite;
}

@keyframes shhpgScrollPulse {
    0%, 100% { transform: scaleY(0.5); opacity: 0.3; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* ============================================ */
/* SHOP BODY - shpbd-                           */
/* ============================================ */
.shpbd-section {
    padding: 3rem 2rem 5rem;
    background: var(--cream);
}

.shpbd-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Tabs */
.shpbd-tabs-wrapper {
    overflow-x: auto;
    margin-bottom: 3rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.shpbd-tabs-wrapper::-webkit-scrollbar { display: none; }

.shpbd-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(230,57,70,0.1);
}

.shpbd-tab {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    font-family: var(--font-body);
}

.shpbd-tab:hover {
    color: var(--dark);
    background: rgba(230,57,70,0.05);
}

.shpbd-tab.active {
    background: var(--red);
    color: white;
    box-shadow: 0 10px 25px rgba(230,57,70,0.2);
}

.shpbd-tab-content {
    display: none;
    animation: shpbdFadeIn 0.4s ease;
}

.shpbd-tab-content.active { display: block; }

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

/* Products Grid */
.shpbd-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.shpbd-product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(230,57,70,0.05);
    display: flex;
    flex-direction: column;
}

.shpbd-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: rgba(230,57,70,0.2);
}

.shpbd-product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #f8f8f8;
}

.shpbd-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s;
    padding: 1rem;
}

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

.shpbd-product-badge {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    background: var(--red);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shpbd-badge-new { background: #2E7D32; }
.shpbd-badge-sale { background: #FF6B35; }

.shpbd-product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.shpbd-product-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.shpbd-product-category {
    font-size: 0.8rem;
    color: var(--red);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.shpbd-product-desc {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 0.8rem;
    flex: 1;
}

.shpbd-product-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

.shpbd-product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
}

.shpbd-stars { color: #FFB800; }
.shpbd-rating-count { font-size: 0.8rem; color: var(--gray); }

.shpbd-product-price {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

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

.shpbd-price-old {
    font-size: 0.9rem;
    color: var(--gray);
    text-decoration: line-through;
}

.shpbd-product-actions {
    display: flex;
    gap: 0.8rem;
    margin-top: auto;
}

.shpbd-btn-details {
    flex: 1;
    padding: 0.7rem 1rem;
    background: transparent;
    border: 2px solid var(--red);
    border-radius: 8px;
    color: var(--red);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-body);
}

.shpbd-btn-details:hover {
    background: var(--red);
    color: white;
}

.shpbd-btn-cart {
    flex: 1;
    padding: 0.7rem 1rem;
    background: var(--red);
    border: 2px solid var(--red);
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-body);
}

.shpbd-btn-cart:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: scale(1.02);
}

.shpbd-btn-cart.added {
    background: #2E7D32;
    border-color: #2E7D32;
}

/* ============================================ */
/* FLOATING CART - flcb-                        */
/* ============================================ */
.flcb-cart-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(230,57,70,0.3);
    transition: all 0.3s;
    z-index: 999;
    border: none;
}

.flcb-cart-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(230,57,70,0.4);
}

.flcb-cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flcb-cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: var(--dark);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--red);
}

/* ============================================ */
/* CART MODAL - shpcm-                          */
/* ============================================ */
.shpcm-cart-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: flex-end;
    justify-content: flex-end;
}

.shpcm-cart-modal.active { display: flex; }

.shpcm-cart-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
}

.shpcm-cart-content {
    position: relative;
    width: 420px;
    max-width: 95vw;
    height: 100vh;
    max-height: 100vh;
    background: white;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    animation: shpcmSlideIn 0.3s ease;
}

@keyframes shpcmSlideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.shpcm-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--cream);
}

.shpcm-cart-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
}

.shpcm-cart-close {
    background: transparent;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--gray);
    transition: color 0.3s;
}

.shpcm-cart-close:hover { color: var(--red); }

.shpcm-cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 2rem;
}

.shpcm-cart-empty {
    text-align: center;
    padding: 3rem 0;
}

.shpcm-empty-icon { font-size: 3rem; display: block; margin-bottom: 1rem; }
.shpcm-cart-empty p { color: var(--gray); }

.shpcm-empty-shop {
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background: var(--red);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-body);
}

.shpcm-cart-items {
    display: none;
    flex-direction: column;
    gap: 1rem;
}

.shpcm-cart-items.has-items { display: flex; }

.shpcm-cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--cream);
    border-radius: 12px;
    align-items: center;
}

.shpcm-cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    background: white;
}

.shpcm-cart-item-info { flex: 1; }
.shpcm-cart-item-name { font-weight: 600; font-size: 0.95rem; }
.shpcm-cart-item-price { color: var(--red); font-weight: 600; font-size: 0.9rem; }

.shpcm-cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.3rem;
}

.shpcm-cart-item-qty button {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--gray);
    background: transparent;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.shpcm-cart-item-qty button:hover {
    background: var(--red);
    color: white;
    border-color: var(--red);
}

.shpcm-cart-item-qty span { font-weight: 600; min-width: 20px; text-align: center; }

.shpcm-cart-item-remove {
    background: transparent;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.3rem 0.5rem;
    transition: color 0.3s;
}

.shpcm-cart-item-remove:hover { color: var(--red); }

.shpcm-cart-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--cream);
}

.shpcm-cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.shpcm-total-amount { color: var(--red); }

.shpcm-checkout-btn {
    width: 100%;
    padding: 1rem;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-body);
}

.shpcm-checkout-btn:hover {
    background: #128C7E;
    transform: scale(1.02);
}

/* ============================================ */
/* DETAIL MODAL - shpdm-                        */
/* ============================================ */
.shpdm-detail-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.shpdm-detail-modal.active { display: flex; }

.shpdm-detail-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
}

.shpdm-detail-content {
    position: relative;
    background: white;
    border-radius: 24px;
    max-width: 900px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    animation: shpdmFadeIn 0.3s ease;
}

@keyframes shpdmFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.shpdm-detail-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray);
    transition: color 0.3s;
    z-index: 2;
}

.shpdm-detail-close:hover { color: var(--red); }

.shpdm-detail-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.shpdm-detail-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.shpdm-detail-main-img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    background: var(--cream);
    border-radius: 12px;
}

.shpdm-detail-thumbs {
    display: flex;
    gap: 0.8rem;
}

.shpdm-detail-thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.shpdm-detail-thumbs img:hover {
    border-color: var(--red);
}

.shpdm-detail-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.shpdm-detail-info h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
}

.shpdm-detail-category { color: var(--red); font-weight: 500; }
.shpdm-detail-rating { color: #FFB800; }
.shpdm-detail-desc { color: var(--gray); line-height: 1.6; }

.shpdm-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.shpdm-instock { color: #2E7D32; font-weight: 600; }

.shpdm-detail-price {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin: 0.5rem 0;
}

.shpdm-detail-current {
    font-size: 2rem;
    font-weight: 700;
    color: var(--red);
}

.shpdm-detail-old {
    font-size: 1.1rem;
    color: var(--gray);
    text-decoration: line-through;
}

.shpdm-detail-cart-btn {
    padding: 1rem 2rem;
    background: var(--red);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-family: var(--font-body);
}

.shpdm-detail-cart-btn:hover {
    background: var(--red-dark);
    transform: scale(1.02);
}

/* ============================================ */
/* RESPONSIVE                                   */
/* ============================================ */
@media (max-width: 1200px) {
    .shhpg-title { font-size: 3.5rem; }
    .shhpg-floating { display: none; }
}

@media (max-width: 992px) {
    .shhpg-title { font-size: 3rem; }
    .shhpg-section { padding: 6rem 1.5rem 3rem; min-height: auto; }
    .shpbd-products-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
    .shpdm-detail-body { grid-template-columns: 1fr; }
    .shpdm-detail-main-img { height: 250px; }
    .shhpg-cart-btn-wrapper {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .shhpg-title { font-size: 2.5rem; }
    .shhpg-search {
        max-width: 100%;
        flex-wrap: wrap;
        background: transparent;
        border: none;
        padding: 0;
    }
    .shhpg-search-input {
        width: 100%;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 60px;
        padding: 0.8rem 1.5rem;
    }
    .shhpg-search-btn {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
    .shhpg-stats { gap: 1.5rem; flex-wrap: wrap; }
    .shhpg-categories { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
    .shpbd-tabs { gap: 0.3rem; }
    .shpbd-tab { padding: 0.6rem 1rem; font-size: 0.75rem; }
    .shpbd-products-grid { grid-template-columns: 1fr; }
    .shpcm-cart-content { width: 100%; max-width: 100%; }
    .shpdm-detail-content { padding: 1.5rem; }
    .flcb-cart-button { bottom: 1rem; right: 1rem; width: 50px; height: 50px; }
    .shhpg-cart-btn-wrapper {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 1.5rem;
    }
    .shhpg-cart-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}