:root {
    --primary: #cc4b00;
    --primary-light: #f39c12;
    --primary-dark: #a03a00;
    --secondary: #1a252f;
    --accent: #3498db;
    --bg-light: #f8fafc;
    --text-dark: #2c3e50;
    --text-muted: #576574;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --radius: 12px;
}

[data-theme="dark"] {
    --bg-light: #0f172a;
    --white: #1e293b;
    --text-dark: #f1f5f9;
    --text-muted: #94a3b8;
    --secondary: #f1f5f9;
    --glass: rgba(15, 23, 42, 0.8);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Nav */
/* Top Bar */
.top-bar {
    background: #1a252f;
    color: white;
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 25px;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-info i {
    color: var(--primary);
}

header {
    background: var(--white);
    color: var(--secondary);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.action-btn {
    background: none;
    border: none;
    color: var(--secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.action-btn:hover {
    color: var(--primary);
    background: rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 37, 47, 0.98);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    width: 90%;
    max-width: 800px;
    position: relative;
}

.search-form {
    display: flex;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 10px;
}

.search-form input {
    width: 100%;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    padding: 10px;
    outline: none;
}

.search-form button {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 2rem;
    cursor: pointer;
}

.search-close {
    position: absolute;
    top: -100px;
    right: 0;
    color: white;
    font-size: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.wa-bubble {
    background: white;
    padding: 15px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    position: relative;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-widget:hover .wa-bubble {
    transform: translateY(0);
    opacity: 1;
}

.wa-btn {
    width: 65px;
    height: 65px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: transform 0.3s;
}

.wa-btn:hover {
    transform: scale(1.1) rotate(10deg);
}

.hero {
    height: 80vh;
    background: linear-gradient(135deg, rgba(26, 37, 47, 0.9), rgba(26, 37, 47, 0.7)), url('../img/background.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius);
    font-weight: 600;
    transition: transform 0.3s, background 0.3s;
    border: none;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Category Grid */
.categories {
    padding: 80px 0;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-subtitle {
    display: block;
    color: #b84400;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-align: center;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    text-decoration: none;
    color: inherit;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 50px 0;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: scale(1.02);
}

.product-img {
    height: 250px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 10;
}

.badge-item {
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
    color: white;
}

.badge-cond {
    background: #1a252f;
}

.badge-featured {
    background: var(--primary);
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-cond {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.8rem;
    border-radius: 20px;
    margin-bottom: 10px;
}

.cond-new {
    background: #e1f5fe;
    color: #0288d1;
}

.cond-used {
    background: #fff3e0;
    color: #943c00;
    /* Darker orange for better contrast */
}

.cond-refurbished {
    background: #e8f5e9 !important;
    color: green !important;
    font-weight: 600 !important;
}

.cond-refurbished-text {
    color: green !important;
    font-weight: 600 !important;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary);
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.product-price {
    font-size: 1.3rem;
    color: var(--secondary);
    font-weight: 700;
}

.detail-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
}

.detail-link:hover {
    color: var(--primary-dark);
}

.center-btn-wrapper {
    text-align: center;
    margin-top: 40px;
}

.btn-dark {
    background: var(--secondary);
    color: white;
    padding: 12px 40px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-dark:hover {
    background: var(--primary);
}

/* Footer */
footer {
    background: var(--secondary);
    color: var(--white);
    padding: 80px 0 20px;
    margin-top: 100px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    margin-bottom: 25px;
    color: var(--primary);
}

.footer-col p,
.footer-col li {
    font-size: 0.95rem;
    color: #cbd5e1;
    /* Clearer light grey for contrast */
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #94a3b8;
    /* Solid color instead of opacity */
}

/* Contact Info Styles */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Manufacture Block Homepage */
.manufacture-block {
    padding: 100px 0;
    background: #f1f5f9;
}

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

.m-text h2 {
    font-size: 2.8rem;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 25px;
}

.m-text p.lead {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 30px;
}

.m-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.m-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.m-feature-item i {
    color: var(--primary);
    font-size: 1.5rem;
}

.m-feature-item span {
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.95rem;
}

.m-image {
    position: relative;
}

.m-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.m-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: white;
    padding: 30px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 10px 25px rgba(211, 84, 0, 0.3);
    border: 5px solid white;
}

.m-badge span {
    font-size: 0.8rem;
    opacity: 0.9;
    text-transform: uppercase;
}

.m-badge strong {
    font-size: 1.4rem;
}

@media (max-width: 992px) {
    .m-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .m-image {
        order: -1;
    }

    .m-badge {
        right: 20px;
        bottom: 20px;
        width: 120px;
        height: 120px;
        padding: 15px;
    }
}

/* New Arrivals Section - Premium Redesign */
.arrivals-section {
    padding: 120px 0;
    background: #fdfdfd;
}

.arrivals-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 35px;
}

.arrival-banner-card {
    background: #4a4a4a;
    /*! border-radius: 40px; */
    padding: 60px 45px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

/* Semi-transparent decorative shape */
.arrival-banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.arrival-banner-card h2 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 40px;
    color: white;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.btn-white-round {
    background: white;
    color: var(--secondary);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.btn-white-round:hover {
    transform: scale(1.08);
    background: var(--primary);
    color: white;
}

.arrival-product-card {
    background: white;
    /*! border-radius: 45px; */
    padding: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}

.arrival-product-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 45px 90px rgba(0, 0, 0, 0.1);
}

.arrival-img-wrapper {
    position: relative;
    /*! border-radius: 35px; */
    overflow: hidden;
    aspect-ratio: 3/3;
}

.arrival-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.arrival-product-card:hover .arrival-img-wrapper img {
    transform: scale(1.15);
}

.arrival-price-overlay {
    position: absolute;
    bottom: 25px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 10px 10px 25px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

.overlay-text {
    font-size: 1rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.2px;
}

.circle-arrow {
    width: 44px;
    height: 44px;
    background: #f97316;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 15px rgba(249, 115, 22, 0.3);
    border: none;
    text-decoration: none;
}

.arrival-product-card:hover .arrival-price-overlay {
    background: #ffffff;
    transform: scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.arrival-product-card:hover .circle-arrow {
    background: #ea580c;
    transform: rotate(-45deg);
}

.arrival-info-mid {
    padding: 30px 20px 10px;
}

.arrival-info-mid h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.3;
}

.arrival-info-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 25px;
}

.arrival-badge {
    padding: 7px 18px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.arrival-stock {
    font-size: 0.85rem;
    color: #047857;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.arrival-new-tag {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #c2410c;
    color: white;
    padding: 6px 16px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    z-index: 5;
    box-shadow: 0 10px 20px rgba(194, 65, 12, 0.4);
}

@media (max-width: 1200px) {
    .arrivals-grid {
        gap: 25px;
    }

    .arrival-banner-card h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .arrivals-grid {
        grid-template-columns: 1fr 1fr;
    }

    .arrival-banner-card {
        grid-column: 1 / -1;
        min-height: 350px;
    }
}

@media (max-width: 600px) {
    .arrivals-grid {
        grid-template-columns: 1fr;
    }
}

/* Filter Sidebar Styles */
.filter-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.filter-title {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f5f9;
    font-weight: 700;
}

.filter-list {
    list-style: none;
}

.filter-list li {
    margin-bottom: 12px;
}

.filter-list a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-list li.active a,
.filter-list a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.filter-list i {
    font-size: 0.9rem;
    width: 20px;
}

/* responsive sidebar */
@media (max-width: 768px) {
    main.container {
        grid-template-columns: 1fr !important;
    }
}

.product-gallery-main {
    padding: 10px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    border: 1px solid #f1f5f9;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.product-gallery-main:hover {
    transform: scale(1.01);
}

.product-gallery-main img {
    width: 100%;
    border-radius: 30px;
    display: block;
}

.thumb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 15px;
}

.thumb-item {
    cursor: pointer;
    border: 3px solid #f1f5f9;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    aspect-ratio: 1/1;
    background: white;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.thumb-item:hover img,
.thumb-item.active img {
    opacity: 1;
}

.thumb-item:hover,
.thumb-item.active {
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(211, 84, 0, 0.2);
}

.product-main-info {
    background: white;
    padding: 50px;
    border-radius: 2px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
}

.product-price-large {
    font-size: 3rem;
    color: var(--primary);
    font-weight: 900;
    margin: 25px 0;
    letter-spacing: -1.5px;
}

.product-desc-full {
    line-height: 1.8;
    color: #475569;
    margin-bottom: 40px;
}

.product-actions {
    display: flex;
    gap: 15px;
}

.action-btn-call {
    flex: 1;
    background: var(--secondary);
    color: white;
    text-decoration: none;
    padding: 20px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.3s;
}

.action-btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.action-btn-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    background: #128c7e;
}

@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.animate {
    animation: fadeInUp 0.8s ease forwards;
}

/* Breadcrumbs */
.breadcrumb {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 12px 20px;
    border-radius: var(--radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    list-style: none;
    margin-bottom: 40px;
    font-size: 0.9rem;
    border: 1px solid #f0f2f5;
    width: fit-content;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
}

.breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

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

.breadcrumb-item i.separator {
    font-size: 0.7rem;
    opacity: 0.4;
}

.breadcrumb-item.active {
    color: var(--secondary);
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
}

/* Lightbox UI */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1000px;
    animation-name: zoom;
    animation-duration: 0.6s;
    border-radius: 20px;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

/* Submenu */
.nav-item-has-children {
    position: relative;
}

.nav-item-has-children:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1100;
    border-top: 5px solid var(--primary);
    margin-top: 20px;
}

.submenu li a {
    color: var(--secondary) !important;
    padding: 12px 25px;
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
}

.submenu li a:hover {
    background: #f8fafc;
    color: var(--primary) !important;
    padding-left: 30px;
}

.nav-links li a i.fa-chevron-down {
    font-size: 0.7rem;
    margin-left: 5px;
    opacity: 0.7;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
    z-index: 1101;
    padding: 10px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(2px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 20px 30px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1050;
        overflow-y: auto;
    }

    .nav-right.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: flex;
        justify-content: space-between;
        padding: 15px 0;
        width: 100%;
        font-size: 1.05rem;
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0 0 10px 15px;
        border-top: none;
        min-width: 100%;
        width: 100%;
        display: none;
    }

    .nav-item-has-children:hover .submenu {
        display: block;
    }

    .submenu li a {
        padding: 8px 0;
        font-size: 0.95rem;
        color: var(--text-muted) !important;
        font-weight: 400;
    }

    .submenu li a:hover {
        padding-left: 10px;
        background: transparent;
    }

    .header-actions {
        margin-top: 20px;
        width: 100%;
        justify-content: flex-start;
        gap: 15px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        padding-top: 20px;
    }

    /* Hide Top Bar on Mobile */
    .top-bar {
        display: none !important;
    }
}

/* Responsive Layout Utilities - Fixes for Mobile */
.page-header {
    background: var(--secondary);
    padding: 60px 0;
    color: white;
    margin-bottom: 0;
}

.page-section {
    padding: 80px 0;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.sidebar-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}


@media (max-width: 992px) {
    .page-header {
        padding: 40px 0;
    }

    .page-section {
        padding: 40px 0;
    }

    .split-layout,
    .sidebar-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-box {
        padding: 25px;
    }

    /* Global Overflow Fix */
    .container {
        max-width: 100%;
        overflow-x: hidden;
    }
}

/* Contact Page Specific Styles */
.contact-list-wrapper {
    margin-bottom: 40px;
}

.contact-page-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-page-row:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(204, 75, 0, 0.2);
}

.contact-info h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--secondary);
    font-weight: 700;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: #f1f5f9;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--text-muted);
    border: 2px dashed #cbd5e1;
}

@media (max-width: 768px) {
    .contact-details-container {
        padding: 0 15px;
    }

    .contact-page-row {
        gap: 15px;
        margin-bottom: 25px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .contact-info h4 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .contact-info p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Custom Status Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.modal-icon.success {
    color: #2ecc71;
}

.modal-icon.error {
    color: #e74c3c;
}

.modal-content h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.5;
}

.modal-content .btn {
    min-width: 150px;
    cursor: pointer;
}

/* Page Content Responsive Fixes */
.page-title {
    font-size: 3rem;
    margin-bottom: 40px;
    color: var(--secondary);
    text-align: center;
    line-height: 1.2;
}

.content-body {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #444;
}

@media (max-width: 992px) {
    .page-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    /* Force rich text content to stack on mobile */
    .content-body img {
        max-width: 100% !important;
        height: auto !important;
    }

    /* Break fixed layouts from editor */
    .content-body [style*="display: flex"],
    .content-body [style*="display:flex"],
    .content-body [style*="grid-template-columns"] {
        display: block !important;
        width: 100% !important;
    }

    .content-body>div,
    .content-body>section,
    .content-body>article {
        width: 100% !important;
        float: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        height: auto !important;
        flex-direction: column !important;
    }

    .content-body table {
        display: block;
        width: 100%;
        overflow-x: auto;
    }
}

/* Product Detail Page Layout */
.product-detail-grid {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 20px;
    align-items: start;
    margin-bottom: 80px;
}

.product-gallery {
    position: sticky;
    top: 120px;
}

.product-gallery-main {
    border-radius: 1px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: white;
}

.product-gallery-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.product-main-info {
    padding-left: 20px;
}

.product-detail-title {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 10px;
    line-height: 1.2;
}

.product-detail-cat {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.product-status-row {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.price-box {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #eee;
}

.product-price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.product-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.action-btn-call,
.action-btn-whatsapp {
    flex: 1;
    padding: 18px;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.product-description-section {
    background-color: white;
    padding: 20px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.06);

}

.action-btn-call {
    background: var(--secondary);
    color: white;
}

.action-btn-call:hover {
    background: #2c3e50;
    transform: translateY(-2px);
}

.action-btn-whatsapp {
    background: #25D366;
    color: white;
}

.action-btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-main-info {
        padding-left: 0;
    }

    .product-gallery {
        position: static;
    }

    .product-actions {
        flex-direction: column;
        gap: 15px;
    }
}

/* Product Title in Header */
.product-title-header {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    margin: 0 20px;
    text-align: center;
    flex: 1;
    max-width: 600px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .product-title-header {
        font-size: 1.2rem;
        margin: 10px 0;
        padding: 0 20px;
        order: 3;
        width: 100%;
        text-align: center;
    }

    .product-title-header {
        display: none;
    }
}

/* Product Details Sidebar Styles */
.product-info-container {
    display: grid;
    gap: 40px;
    align-items: start;
}

.product-details-sidebar {
    background: white;
    padding: 30px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.sidebar-header i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.sidebar-header h3 {
    margin: 0;
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 700;
}

/* List Styles */
.details-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.list-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    min-height: 50px;
}

.list-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-color: #10b981;
}

.list-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 140px;
    flex-shrink: 0;
}

.list-label i {
    color: #0ea5e9;
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.list-value {
    font-size: 0.95rem;
    color: #1f2937;
    font-weight: 700;
    flex: 1;
    text-align: right;
}

.list-value.in-stock {
    color: #059669;
}

.list-value.out-of-stock {
    color: #dc2626;
}

/* Special Info Block */
.list-item.special-info {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
}

.list-item.special-info .list-label {
    color: #0c4a6e;
    margin-bottom: 8px;
}

.list-item.special-info .list-label i {
    color: #0ea5e9;
}

.list-value.special-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #075985;
    font-weight: 600;
}

.info-item i {
    color: #10b981;
    font-size: 12px;
}

.sidebar-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.action-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.action-card i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.action-card .fab.fa-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.action-card div {
    flex: 1;
}

.action-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}

.action-value {
    font-size: 0.95rem;
    color: #1f2937;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.action-value:hover {
    color: #10b981;
}

.sidebar-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    font-size: 0.85rem;
    color: #4b5563;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #f0fdf4;
    border-color: #10b981;
    color: #059669;
}

.feature-item i {
    color: #10b981;
    font-size: 14px;
}

/* Product Title Section */
.product-title-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    width: 102%;
}

.product-title-main {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-meta {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    padding: 8px 16px;
    background: white;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.meta-item:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

.meta-item i {
    color: var(--primary);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-details-sidebar {
        position: static;
        order: -1;
    }
}

@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-gallery {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .product-details-sidebar {
        padding: 20px;
        border-radius: 16px;
    }

    .sidebar-features {
        grid-template-columns: 1fr;
    }

    .list-item {
        padding: 10px 12px;
        min-height: 45px;
    }

    .list-label {
        font-size: 0.8rem;
        min-width: 120px;
    }

    .list-value {
        font-size: 0.9rem;
    }

    .action-card {
        padding: 14px;
    }

    .action-card i {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    /* Mobile Title Styles */
    .product-title-section {
        padding: 20px;
        margin-bottom: 20px;
    }

    .product-title-main {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .product-meta {
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }

    .meta-item {
        padding: 6px 12px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: flex-start;
    }

    /* Mobile Price Styles */
    .price-box {
        padding: 20px;
        margin-bottom: 20px;
    }

    .product-price-large {
        font-size: 2.2rem;
    }

    .price-label {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .price-sub {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
}

/* ============================================
   PRODUCT DETAIL — UNIFIED 2-COLUMN LAYOUT
   ============================================ */

/* 2-column: [gallery] [unified-panel] */
.product-detail-grid {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 30px;
    align-items: start;
}

/* Left column: gallery */
.product-gallery {
    position: sticky;
    top: 20px;
}

.product-gallery-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f8fafc;
    cursor: zoom-in;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    aspect-ratio: 4/3;
}

.product-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-gallery-main:hover img {
    transform: scale(1.04);
}

.zoom-icon {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-gallery-main:hover .zoom-icon {
    opacity: 1;
}

.thumb-grid {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.thumb-item {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.thumb-item.active,
.thumb-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right column: unified panel */
.product-unified-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Header block: title, category, badges */
.pup-header {
    padding-bottom: 18px;
    border-bottom: 1px solid #e2e8f0;
}

.pup-header .product-detail-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.25;
    margin-bottom: 8px;
}

.pup-header .product-detail-cat {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.pup-header .product-detail-cat span {
    color: var(--primary);
    font-weight: 600;
}

/* Price box */
.price-box {
    background: linear-gradient(135deg, #fff8f5 0%, #fff 100%);
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 30px rgba(204, 75, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.price-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
}

.price-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.product-price-large {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(204, 75, 0, 0.1);
}

.price-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    font-weight: 500;
}

.price-box b {
    font-size: 0.8rem;
    color: #94a3b8;
    display: block;
    margin-top: 12px;
    padding: 8px 12px;
    background: rgba(204, 75, 0, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}

/* Action buttons row */
.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.action-btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: var(--secondary);
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.action-btn-call:hover {
    background: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 37, 47, 0.25);
}

.action-btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: #25d366;
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.action-btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* İlan Detayları section */
.pup-details-section {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 18px;
}

.pup-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.pup-section-title i {
    color: var(--primary);
}

/* 4-column detail cards grid */
.pup-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.pup-detail-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 12px 8px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #f1f5f9;
    transition: all 0.2s;
}

.pup-detail-card:hover {
    border-color: #e2e8f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.pup-detail-card--highlight {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-color: #bbf7d0;
    grid-column: span 2;
    flex-direction: row;
    text-align: left;
    padding: 14px;
}

.pup-detail-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--primary);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.pup-detail-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.pup-detail-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.pup-detail-value {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--secondary);
    word-break: break-word;
}

.pup-detail-value.in-stock {
    color: #059669;
}

.pup-detail-value.out-of-stock {
    color: #dc2626;
}

/* Contact row */
.pup-contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pup-contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 16px;
}

.pup-contact-card i {
    font-size: 1.3rem;
    color: var(--primary);
    width: 28px;
    text-align: center;
}

.pup-contact-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    display: block;
}

.pup-contact-value {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.pup-contact-value:hover {
    color: var(--primary);
}

/* Trust badges */
.trust-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 10px;
    padding: 12px 8px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
}

.trust-item i {
    font-size: 1.1rem;
    color: var(--primary);
}

/* Status badges in header */
.product-status-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.cond-new {
    background: #e1f5fe;
    color: #0288d1;
}

.cond-used {
    background: #fff3e0;
    color: #943c00;
}

.stock-badge {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Lightbox */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
}

.lightbox-modal[style*="display: block"] {
    display: flex !important;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 8px;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.lightbox-close:hover {
    color: var(--primary);
}

/* Product description section */
.product-description-section {
    margin-top: 60px;
    background: var(--white);
    border-radius: 16px;
    padding: 35px;
    box-shadow: var(--shadow);
}

.desc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.desc-header i {
    color: var(--primary);
    font-size: 1.2rem;
}

.desc-header h2 {
    font-size: 1.4rem;
    color: var(--secondary);
}

.desc-content {
    font-size: 0.97rem;
    line-height: 1.9;
    color: var(--text-muted);
    white-space: pre-line;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 30px;
    font-size: 0.85rem;
}

.breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

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

.breadcrumb-item.active {
    color: var(--secondary);
    font-weight: 600;
}

.separator {
    color: #cbd5e1;
    font-size: 0.65rem;
    margin: 0 2px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-gallery {
        position: static;
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }

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

    .pup-detail-card--highlight {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .pup-header .product-detail-title {
        font-size: 1.4rem;
    }

    .product-price-large {
        font-size: 1.8rem;
    }

    .product-actions {
        grid-template-columns: 1fr;
    }

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

    .pup-contact-row {
        grid-template-columns: 1fr;
    }

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

    .pup-detail-card--highlight {
        grid-column: span 2;
    }
}

.refurbished-alert {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #bbf7d0;
    border-radius: 16px;
    padding: 20px 25px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.05);
}

.refurbished-alert i {
    font-size: 2rem;
    color: #10b981;
}

.refurbished-alert-body {
    flex: 1;
}

.refurbished-alert h4 {
    color: #065f46;
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 800;
}

.refurbished-alert p {
    color: #065f46;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

.refurbished-alert-link {
    color: #10b981;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.refurbished-alert-link:hover {
    border-color: #10b981;
    gap: 8px;
}

@media (max-width: 768px) {
    .refurbished-alert {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
}