body {
    background-color: #020617; /* Matches Footer Copyright to prevent white gaps */
}

.ps-loading {
    display: none !important; /* Hide legacy loader if it's causing layout gaps */
}
.ps-slider--premium {
    height: 750px;
    position: relative;
    overflow: hidden;
    background: #000;
}

.premium-slide-content {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

.premium-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 12s cubic-bezier(0.1, 0, 0.1, 1);
}

.swiper-slide-active .premium-slide-bg {
    transform: scale(1.15);
}

.premium-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 40%, rgba(15, 23, 42, 0) 100%);
    z-index: 1;
}

.premium-slide-inner {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
}

.premium-slide-tag {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    animation: slideInDown 0.8s both;
}

.premium-slide-title {
    font-family: 'Outfit', sans-serif !important;
    font-size: 72px !important;
    font-weight: 900 !important;
    color: #fff !important;
    line-height: 1.1 !important;
    margin-bottom: 30px !important;
    letter-spacing: -2px !important;
    background: linear-gradient(to bottom, #ffffff 0%, #d1d5db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideInLeft 1s both 0.2s;
}

.premium-slide-desc {
    font-family: 'Poppins', sans-serif !important;
    font-size: 18px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    max-width: 500px;
    line-height: 1.8 !important;
    margin-bottom: 45px !important;
    animation: slideInLeft 1s both 0.4s;
}

.premium-slide-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    animation: slideInUp 1s both 0.6s;
}

.ps-btn--premium {
    background: var(--premium-gradient) !important;
    border: none !important;
    padding: 20px 45px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #fff !important;
    border-radius: 100px !important;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(243, 112, 33, 0.4) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.ps-btn--premium:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 45px rgba(243, 112, 33, 0.6) !important;
}

.premium-slide-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
}

.premium-slide-badge i {
    font-size: 20px;
    color: var(--primary-color);
}

/* Visual Side */
.premium-slide-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(243, 112, 33, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
}

.floating-visual {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

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

/* Controls */
.premium-nav {
    position: absolute;
    bottom: 50px;
    right: 100px;
    display: flex;
    gap: 15px;
    z-index: 100;
}

.premium-prev, .premium-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.premium-prev:hover, .premium-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.premium-pagination {
    position: absolute !important;
    left: 100px !important;
    bottom: 50px !important;
    width: auto !important;
    text-align: left !important;
    z-index: 100 !important;
}

.premium-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    margin: 0 5px !important;
    transition: all 0.4s ease;
}

.premium-pagination .swiper-pagination-bullet-active {
    width: 60px;
    background: var(--primary-color);
}

/* Progress Bar */
.premium-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 100;
}

.premium-progress-bar {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    transition: width linear;
}

/* Base Redesign Overrides */
:root {
    --primary-color: #f37021; 
    --accent-color: #d35400; 
    --premium-gradient: linear-gradient(135deg, #f37021 0%, #e67e22 100%);
}

body {
    font-family: 'Poppins', sans-serif !important;
    overflow-x: hidden;
}

h1, h2, h3, .ps-product__title {
    font-family: 'Outfit', sans-serif !important;
}

/* Responsive */
@media (max-width: 1200px) {
    .premium-slide-title { font-size: 56px !important; }
    .ps-slider--premium { height: 650px; }
}

@media (max-width: 991px) {
    .premium-slide-inner { grid-template-columns: 1fr; text-align: center; }
    .premium-slide-desc { margin-left: auto; margin-right: auto; }
    .premium-slide-actions { justify-content: center; }
    .premium-slide-visual { display: none; }
    .premium-slide-title { font-size: 48px !important; }
    .premium-pagination, .premium-nav { left: 50% !important; right: auto !important; transform: translateX(-50%); bottom: 30px; }
    .premium-pagination { bottom: 80px !important; }
}

/* Animations */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
/* --- PREMIUM FOOTER 2026 --- */
.ps-footer {
    background: #0f172a !important; /* Deep Slate Blue */
    color: #94a3b8 !important;
    padding-top: 80px !important;
    border-top: 4px solid var(--primary-color);
}

.ps-footer__content {
    padding-bottom: 60px !important;
}

.ps-footer .widget-title {
    color: #fff !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 35px !important;
    position: relative;
    padding-bottom: 12px;
}

.ps-footer .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.ps-footer p {
    color: #94a3b8 !important;
    line-height: 1.8 !important;
    font-size: 14px;
}

.ps-list--line li {
    margin-bottom: 12px !important;
    padding-left: 0 !important;
}

.ps-list--line li a {
    color: #cbd5e1 !important;
    font-size: 14px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
}

.ps-list--line li a::before {
    content: '\f105'; /* FontAwesome Angle Right */
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 12px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.ps-list--line li a:hover {
    color: var(--primary-color) !important;
    padding-left: 8px !important;
}

.ps-list--line li a:hover::before {
    transform: translateX(3px);
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-contact-item i {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.footer-contact-item:hover i {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-contact-info h5 {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.ps-footer .ps-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.ps-footer .ps-social li a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.ps-footer .ps-social li a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(243, 112, 33, 0.3);
}

.ps-footer__copyright {
    background: #020617 !important; /* Extremely Dark Blue/Black */
    padding: 25px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ps-footer__copyright p {
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 500;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-bottom-flex { flex-direction: column; gap: 15px; text-align: center; }
}

/* --- PREMIUM PRODUCTS GRID 2026 --- */
.premium-products-grid {
    padding: 80px 0 !important;
    background: #f8fafc;
}

.premium-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.premium-section-header .sub-title {
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    display: block;
    margin-bottom: 15px;
}

.premium-section-header .main-title {
    font-size: 42px !important;
    font-weight: 900 !important;
    color: #0f172a !important;
    margin-bottom: 20px !important;
    letter-spacing: -1px;
}

.premium-section-header .description {
    max-width: 600px;
    margin: 0 auto;
    color: #64748b;
    font-size: 16px;
}

.header-line {
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 30px auto 0;
    border-radius: 2px;
}

.premium-grid-row {
    display: flex;
    flex-wrap: wrap;
}

.premium-product-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #e2e8f0;
    margin-bottom: 30px;
    position: relative;
}

.premium-product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
    border-color: var(--primary-color);
}

.card-image {
    position: relative;
    height: 250px;
    background: #f1f5f9;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.card-image img {
    max-height: 100%;
    width: auto !important;
    transition: transform 0.6s ease;
}

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

.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(243, 112, 33, 0.3);
}

.card-overlay-actions {
    position: absolute;
    top: 0;
    right: -60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding-right: 15px;
    transition: all 0.4s ease;
    z-index: 10;
}

.premium-product-card:hover .card-overlay-actions {
    right: 0;
}

.card-overlay-actions a {
    width: 45px;
    height: 45px;
    background: #fff;
    color: #0f172a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.card-overlay-actions a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.card-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 18px !important;
    font-weight: 800 !important;
    margin-bottom: 12px !important;
    line-height: 1.4 !important;
}

.product-title a {
    color: #0f172a !important;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: var(--primary-color) !important;
}

.product-excerpt {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px !important;
    height: 45px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.btn-premium-sm {
    background: #0f172a;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-premium-sm:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 112, 33, 0.3);
}

.stock-status {
    font-size: 12px;
    color: #10b981; /* Green */
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* --- PREMIUM BLOG SECTION 2026 --- */
.premium-blog-section {
    padding: 100px 0 !important;
    background: #fff;
}

.premium-post-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
}

.premium-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
}

.post-thumbnail {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.premium-post-card:hover .post-thumbnail img {
    transform: scale(1.1);
}

.post-date {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 18px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(243, 112, 33, 0.3);
}

.post-body {
    padding: 30px;
}

.post-title {
    font-size: 20px !important;
    font-weight: 800 !important;
    margin-bottom: 15px !important;
}

.post-title a {
    color: #0f172a !important;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: var(--primary-color) !important;
}

.post-excerpt {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px !important;
    height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.post-link {
    font-weight: 700;
    color: var(--primary-color) !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    transition: gap 0.3s ease;
}

.post-link:hover {
    gap: 15px;
}

/* --- PREMIUM FEATURES BAR --- */
.premium-features-bar {
    padding: 60px 5% !important;
    background: #0f172a;
    position: relative;
    overflow: hidden;
}

.premium-features-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(243, 112, 33, 0.05) 0%, transparent 50%);
}

.premium-feature-box {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 20px;
    transition: all 0.3s ease;
}

.premium-feature-box:hover {
    transform: translateX(10px);
}

.feature-icon {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.premium-feature-box:hover .feature-icon {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(243, 112, 33, 0.2);
}

.feature-text h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-text p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .premium-feature-box { margin-bottom: 30px; }
}

/* SEO Tagline */
.footer-seo-text {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 12px !important;
    color: #475569 !important;
    text-align: center;
}

/* --- PREMIUM VERTICAL ACTION HUB 2026 --- */
.premium-action-hub {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: slideInFromLeft 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.action-item {
    position: relative;
    width: 60px;
    height: 60px;
    background: rgba(15, 23, 42, 0.85); /* Darker glass for better contrast */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-decoration: none !important;
}

/* Base Colors for Action Items */
.action-whatsapp { background: #25d366 !important; }
.action-shop { background: #3b82f6 !important; } /* Blue for Online Store */
.action-call { background: #0f172a !important; }
.action-catalog { background: #ef4444 !important; }
.action-location { background: #f37021 !important; }

.action-item:hover {
    width: 75px;
    background: #0f172a;
    color: #fff;
    transform: translateX(10px);
}

.action-item i {
    transition: transform 0.4s ease;
}

.action-item:hover i {
    transform: scale(1.2);
}

/* Tooltips */
.action-item::after {
    content: attr(data-label);
    position: absolute;
    left: 100%;
    margin-left: 20px;
    background: #0f172a;
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.action-item:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Hover Colors */
.action-whatsapp:hover { background: #25d366 !important; box-shadow: 0 15px 45px rgba(37, 211, 102, 0.5) !important; border-color: #25d366 !important; }
.action-call:hover { background: #3b82f6 !important; box-shadow: 0 15px 45px rgba(59, 130, 246, 0.5) !important; border-color: #3b82f6 !important; }
.action-catalog:hover { background: #ef4444 !important; box-shadow: 0 15px 45px rgba(239, 68, 68, 0.5) !important; border-color: #ef4444 !important; }
.action-location:hover { background: #f37021 !important; box-shadow: 0 15px 45px rgba(243, 112, 33, 0.5) !important; border-color: #f37021 !important; }

/* Mobile Adaptability */
@media (max-width: 768px) {
    .premium-action-hub {
        left: 0;
        bottom: 0;
        top: auto;
        transform: none;
        flex-direction: row;
        width: 100%;
        justify-content: space-around;
        background: #0f172a;
        padding: 15px 10px;
        border-radius: 0;
        gap: 0;
    }
    .action-item { width: 45px; height: 45px; border-radius: 12px; border-left: none; border-bottom: 2px solid transparent; background: transparent; box-shadow: none; }
    .action-whatsapp { border-bottom-color: #25d366; }
    .action-call { border-bottom-color: #3b82f6; }
    .action-catalog { border-bottom-color: #ef4444; }
    .action-location { border-bottom-color: #f37021; }
    
    .action-item:hover { width: 45px; transform: translateY(-5px); }
}
/* --- PREMIUM PRODUCT PAGE & SIDEBAR --- */
.premium-hero-mini {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-tag {
    background: var(--primary-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
}

.hero-title {
    font-size: 48px !important;
    font-weight: 900 !important;
    margin-bottom: 20px !important;
    color: #fff !important;
}

.premium-page-layout {
    padding: 80px 0 !important;
    background: #f8fafc;
}

.premium-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.sidebar-widget .widget-title {
    font-size: 18px !important;
    font-weight: 800 !important;
    margin-bottom: 25px !important;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}

.sidebar-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.premium-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.premium-category-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569 !important;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    padding: 10px 15px;
    border-radius: 12px;
}

.premium-category-list li a::before {
    content: '\f105';
    font-family: 'FontAwesome';
    color: #cbd5e1;
    transition: all 0.3s ease;
}

.premium-category-list li.current a,
.premium-category-list li a:hover {
    background: rgba(243, 112, 33, 0.05);
    color: var(--primary-color) !important;
}

.premium-category-list li.current a::before,
.premium-category-list li a:hover::before {
    color: var(--primary-color);
    transform: translateX(5px);
}

.premium-contact-card {
    background: #0f172a !important;
    color: #fff;
}

.premium-contact-card h4 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 15px;
}

.premium-contact-card p {
    color: #94a3b8;
    font-size: 13px;
    margin-bottom: 20px;
}

.sidebar-call-btn {
    background: var(--primary-color);
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.sidebar-call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(243, 112, 33, 0.3);
}

.premium-category-description {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.description-header {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.description-header::before {
    content: '';
    width: 5px;
    height: 25px;
    background: var(--primary-color);
    border-radius: 10px;
}

.description-content {
    color: #64748b;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .premium-hero-mini { height: 300px; }
    .hero-title { font-size: 32px !important; }
    .premium-sidebar { margin-bottom: 50px; }
}

/* --- PREMIUM PRODUCT DETAIL --- */
.premium-detail-layout {
    padding: 80px 0 !important;
    background: #fff;
}

.premium-gallery-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-gallery-view {
    background: #f8fafc;
    border-radius: 24px;
    overflow: hidden;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border: 1px solid #f1f5f9;
}

.main-gallery-view img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.gallery-thumbs {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.thumb-item {
    width: 100px;
    height: 100px;
    background: #fff;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.thumb-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(243, 112, 33, 0.2);
}

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

.premium-detail-info {
    padding-left: 40px;
}

.stock-badge {
    color: #10b981;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.product-title-detail {
    font-size: 36px !important;
    font-weight: 900 !important;
    color: #0f172a !important;
    margin-bottom: 10px !important;
    line-height: 1.2 !important;
}

.product-category-link {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 30px;
}

.product-category-link span {
    color: var(--primary-color);
    font-weight: 700;
}

.info-short-desc p {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 30px;
}

.premium-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.premium-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
}

.premium-feature-list li i {
    color: var(--primary-color);
    font-size: 16px;
}

.btn-premium-whatsapp {
    background: #25d366;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 30px;
    border-radius: 20px;
    text-decoration: none !important;
    transition: all 0.4s ease;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

.btn-premium-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
}

.btn-premium-whatsapp i {
    font-size: 32px;
}

.btn-text span {
    display: block;
    font-size: 18px;
    font-weight: 800;
}

.btn-text small {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.detail-contact-mini {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-contact-mini a {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a !important;
    text-decoration: none !important;
}

.detail-contact-mini span {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-tabs-section .tabs-header {
    border-bottom: 2px solid #f1f5f9;
    margin-bottom: 40px;
}

.premium-tabs-section .tab-btn {
    padding: 15px 30px;
    font-weight: 800;
    color: #0f172a;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    position: relative;
    top: 2px;
}

.description-body {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

.related-header {
    margin-bottom: 40px;
}

.related-header h3 {
    font-size: 28px !important;
    font-weight: 900 !important;
    color: #0f172a !important;
    margin-bottom: 10px !important;
}

.related-header p {
    color: #64748b;
}

@media (max-width: 991px) {
    .premium-detail-info { padding-left: 0; margin-top: 40px; }
    .main-gallery-view { height: 400px; }
    .product-title-detail { font-size: 28px !important; }
}

/* --- PREMIUM CONTACT PAGE --- */
.premium-contact-page {
    padding: 100px 0 !important;
    background: #f8fafc;
}

.premium-map-container {
    width: 100%;
    height: 450px;
    background: #e2e8f0;
    overflow: hidden;
}

.premium-contact-form-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 32px !important;
    font-weight: 900 !important;
    color: #0f172a !important;
    margin-bottom: 15px !important;
}

.form-header p {
    color: #64748b;
    font-size: 16px;
}

.premium-input-group {
    margin-bottom: 25px;
}

.premium-input-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.premium-input-group input,
.premium-input-group textarea {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 15px;
    color: #0f172a;
    transition: all 0.3s ease;
}

.premium-input-group input:focus,
.premium-input-group textarea:focus {
    background: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(243, 112, 33, 0.1);
    outline: none;
}

.form-footer-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 20px;
}

.btn-premium-send {
    background: var(--primary-color);
    color: #fff !important;
    border: none;
    padding: 18px 45px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-premium-send:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(243, 112, 33, 0.3);
}

.contact-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
}

.contact-info-card .card-icon {
    width: 60px;
    height: 60px;
    background: rgba(243, 112, 33, 0.05);
    color: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.card-text h3 {
    font-size: 18px !important;
    font-weight: 800 !important;
    margin-bottom: 10px !important;
    color: #0f172a !important;
}

.card-text p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.card-text a {
    color: inherit;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.card-text a:hover {
    color: var(--primary-color);
}

.card-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color) !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.premium-social-connect {
    background: #0f172a;
    padding: 30px;
    border-radius: 20px;
    color: #fff;
    margin-top: 20px;
}

.premium-social-connect h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

/* Premium Alerts */
.premium-alert-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; padding: 20px; border-radius: 12px; margin-bottom: 30px; font-weight: 600; }
.premium-alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; padding: 20px; border-radius: 12px; margin-bottom: 30px; font-weight: 600; }
.premium-alert-warning { background: #fef9c3; color: #854d0e; border: 1px solid #fef08a; padding: 20px; border-radius: 12px; margin-bottom: 30px; font-weight: 600; }
/* --- PREMIUM KVKK & COOKIE SYSTEM --- */
.footer-legal-links {
    margin-top: 10px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-legal-links a {
    color: #475569 !important;
    font-size: 11px;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--primary-color) !important;
}

.footer-legal-links .sep {
    color: #1e293b;
    font-size: 10px;
}

.premium-cookie-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 450px;
    max-width: calc(100% - 60px);
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 25px;
    z-index: 10000;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(150%);
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-cookie-banner.visible {
    transform: translateY(0);
}

.premium-cookie-banner.hidden {
    transform: translateY(150%);
    pointer-events: none;
}

.cookie-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cookie-icon {
    width: 50px;
    height: 50px;
    background: rgba(243, 112, 33, 0.1);
    color: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.cookie-text h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.cookie-text p {
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-cookie-accept {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(243, 112, 33, 0.3);
}

.btn-cookie-info {
    background: rgba(255, 255, 255, 0.05);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.btn-cookie-info:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .premium-cookie-banner {
        bottom: 20px;
        right: 20px;
        left: 20px;
        width: auto;
        padding: 20px;
    }
    .cookie-content { flex-direction: column; text-align: center; align-items: center; }
    .cookie-actions { width: 100%; justify-content: center; }
    .btn-cookie-accept { flex: 1; }
}

@media (max-width: 768px) {
    .premium-contact-form-wrapper { padding: 30px; }
    .form-footer-actions { flex-direction: column; align-items: stretch; }
    .btn-premium-send { justify-content: center; }
}

/* --- PREMIUM LEGAL & CONTENT PAGES --- */
.premium-legal-layout {
    padding: 100px 0 !important;
    background: #fff;
}

.legal-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text {
    color: #475569;
    line-height: 1.8;
    font-size: 16px;
}

.legal-text h2 {
    color: #0f172a;
    font-size: 24px;
    font-weight: 800;
    margin: 40px 0 20px 0;
}

.legal-text p {
    margin-bottom: 20px;
}

.legal-text ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.legal-text li {
    margin-bottom: 10px;
    list-style: disc;
}

.premium-breadcrumb-nav {
    margin-bottom: 30px;
}

.premium-breadcrumb-nav ol {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    font-size: 13px;
    font-weight: 600;
}

.premium-breadcrumb-nav a {
    color: #94a3b8;
    text-decoration: none !important;
}

.premium-breadcrumb-nav .active {
    color: var(--primary-color);
}

/* --- PREMIUM HEADER 2026 --- */
.premium-header {
    position: relative;
    z-index: 1000;
    width: 100%;
}

.premium-top-bar {
    background: #020617;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.top-announcement {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #94a3b8;
}

.top-announcement i {
    color: var(--primary-color);
    animation: pulse 2s infinite;
}

.top-announcement a {
    color: inherit;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.top-announcement a:hover {
    color: #fff;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #94a3b8;
}

.top-contact a {
    color: inherit;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.top-contact a:hover {
    color: var(--primary-color);
}

.top-contact .sep {
    color: #1e293b;
}

.premium-nav-bar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

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

.premium-logo img {
    height: 60px;
    transition: height 0.4s ease;
}

.premium-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.premium-menu > li > a {
    color: #cbd5e1 !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.premium-menu > li:hover > a,
.premium-menu > li.active > a {
    color: #fff !important;
}

.premium-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.premium-menu > li:hover > a::after,
.premium-menu > li.active > a::after {
    width: 100%;
}

/* Dropdowns */
.has-dropdown {
    position: relative;
}

.premium-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    width: 900px;
    max-width: 95vw;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

.premium-dropdown-list {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    min-width: 220px;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

.has-dropdown:hover .premium-dropdown,
.has-dropdown:hover .premium-dropdown-list {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.dropdown-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.premium-dropdown li,
.premium-dropdown-list li {
    list-style: none;
    margin: 0;
}

.premium-dropdown li a,
.premium-dropdown-list li a {
    color: #94a3b8 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    white-space: normal;
    line-height: 1.4;
}

.premium-dropdown li a:hover,
.premium-dropdown-list li a:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.05);
    padding-left: 15px;
}

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

.premium-search-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 5px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.premium-search-wrapper:focus-within {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.premium-search-wrapper input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
    width: 150px;
    outline: none;
}

.premium-search-wrapper button {
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.3s ease;
}

.premium-search-wrapper button:hover {
    color: #fff;
}

.btn-nav-quote {
    background: var(--primary-color);
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.btn-nav-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(243, 112, 33, 0.3);
}

/* Mobile Toggle */
.menu-toggle-premium {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle-premium span {
    width: 25px;
    height: 2px;
    background: #fff;
    border-radius: 5px;
}

/* Fixed Header State */
.premium-header.is-fixed .premium-nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.premium-header.is-fixed .premium-logo img {
    height: 45px;
}

@media (max-width: 991px) {
    .nav-center { display: none; }
    .premium-top-bar { display: none; }
    .menu-toggle-premium { display: flex; }
    .premium-search-wrapper { display: none; }
    .btn-nav-quote { display: none; }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* --- PREMIUM CATEGORIES GRID --- */
.premium-home-categories {
    padding: 100px 0;
    background: #f8fafc;
}

.premium-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.category-card {
    position: relative;
    height: 100%;
}

.category-card .card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.category-card:hover .card-inner {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
    border-color: var(--primary-color);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.card-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

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

.card-title {
    color: #0f172a;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.category-card:hover .card-title {
    color: var(--primary-color);
}

.card-arrow {
    margin-top: auto;
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.category-card:hover .card-arrow {
    opacity: 1;
    transform: translateY(0);
    background: var(--primary-color);
    color: #fff;
}

/* Special Cards */
.special-online .card-inner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border: none;
}

.special-online .card-icon i {
    font-size: 40px;
    color: var(--primary-color);
}

.special-online .card-title {
    color: #fff;
}

.special-online .card-desc {
    color: #94a3b8;
    font-size: 13px;
    margin-bottom: 20px;
}

.special-online .card-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.online-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.special-quote .card-inner {
    background: rgba(243, 112, 33, 0.05);
    border: 1px dashed var(--primary-color);
}

.special-quote .card-icon i {
    font-size: 40px;
    color: var(--primary-color);
}

.special-quote .card-desc {
    color: #64748b;
    font-size: 13px;
}

@keyframes ping {
    75%, 100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .premium-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .category-card .card-inner {
        padding: 30px 15px;
    }
}

/* --- PREMIUM CTA BAR (50/50) --- */
.premium-cta-bar {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background: #0f172a;
}

.cta-half {
    flex: 1;
    min-width: 350px;
    position: relative;
    overflow: hidden;
}

.cta-half .cta-inner {
    display: flex;
    align-items: center;
    padding: 60px 10%;
    text-decoration: none !important;
    transition: all 0.5s ease;
    height: 100%;
}

.online-shop {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.get-quote {
    background: #f37021;
}

.cta-icon {
    font-size: 50px;
    margin-right: 30px;
    color: #fff;
    transition: transform 0.4s ease;
}

.cta-text {
    flex: 1;
}

.cta-text h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin: 0;
}

.cta-btn {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.online-shop .cta-btn {
    background: var(--primary-color);
    color: #fff;
}

.get-quote .cta-btn {
    background: #fff;
    color: #f37021;
}

.cta-half:hover .cta-icon {
    transform: scale(1.1) rotate(-5deg);
}

.cta-half:hover .cta-inner {
    padding-left: 11%;
}

@media (max-width: 991px) {
    .cta-half {
        flex: 0 0 100%;
    }
    .cta-half .cta-inner {
        padding: 40px 30px;
    }
    .cta-text h3 {
        font-size: 20px;
    }
    .cta-btn {
        display: none; /* Hide button on small mobile if tight */
    }
}

@media (min-width: 600px) {
    .cta-btn {
        display: flex;
    }
}
/* --- PREMIUM MOBILE SIDEBAR --- */
.premium-mobile-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: 20px 0 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.premium-mobile-sidebar.is-active {
    left: 0;
}

.sidebar-header {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-logo {
    height: 40px;
}

.sidebar-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list > li > a {
    display: block;
    padding: 15px 30px;
    color: #cbd5e1 !important;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.mobile-nav-list > li > a i {
    float: right;
    margin-top: 5px;
}

.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.2);
    display: none;
}

.mobile-submenu li a {
    display: block;
    padding: 12px 40px;
    color: #94a3b8 !important;
    font-size: 14px;
    text-decoration: none !important;
}

.sidebar-footer {
    padding: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-footer p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 20px;
}

.sidebar-social {
    display: flex;
    gap: 20px;
}

.sidebar-social a {
    color: #fff;
    font-size: 18px;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

/* Submenu Toggle State */
.has-mobile-submenu.open .mobile-submenu {
    display: block;
}

.has-mobile-submenu.open .toggle-submenu i {
    transform: rotate(45deg);
}
