/* ===== CSS VARIABLES ===== */
:root {
    --prod-primary: #3056D3;
    --prod-dark: #090E34;
    --prod-dark-2: #1D2144;
    --prod-dark-3: #24283E;
    --prod-dark-6: #8899A8;
    --prod-body-color: #637381;
    --prod-white: #ffffff;
    --prod-stroke: #DFE4EA;
    --prod-bg: #f9fafb;
    --prod-card-bg: #ffffff;
}

.dark {
    --prod-bg: #1a202c;
    --prod-card-bg: #1D2144;
    --prod-white: #ffffff;
    --prod-dark: #ffffff;
    --prod-body-color: #a0aec0;
    --prod-dark-2: #2d3748;
    --prod-dark-3: #4a5568;
    --prod-stroke: #4a5568;
}

/* Fix teks navbar dan sidebar di dark mode */
.dark .ud-menu-scroll,
.dark nav#navbarCollapse ul li a,
.dark .sidebar-content h3,
.dark .sidebar-content ul li a {
  color: white !important;
}

/* Untuk hover state */
.dark nav#navbarCollapse ul li a:hover,
.dark .sidebar-content ul li a:hover {
  opacity: 0.7 !important;
  color: white !important;
}

/* ===== FEATURES SECTION ===== */
.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    color: white;
    font-weight: bold;
    font-size: 1.875rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

/* Warna berbeda untuk setiap icon */
.feature-icon-1 {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.feature-icon-2 {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.feature-icon-3 {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.feature-icon-4 {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.feature-icon-5 {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.feature-icon-6 {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #1e293b, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-title {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.feature-description {
    color: #64748b;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 0.5rem;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
}

.cta-button {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border: none;
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4);
}

.cta-button:hover::before {
    left: 100%;
}

.dark .feature-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.dark .feature-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dark .feature-description {
    color: #cbd5e1;
}

/* ===== CATEGORY SECTION ===== */
.category-card {
    transition: all 0.3s ease-in-out;
    transform: translateY(0);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.category-image {
    transition: all 0.4s ease;
    width: 100%;
    height: auto;
    cursor: pointer;
    border-radius: 0;
}

.category-card:hover .category-image {
    transform: scale(1.1) rotate(5deg);
}

.category-image:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 22px rgba(0,0,0,.18);
}

.category-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.category-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: all 0.6s ease;
}

.category-button:hover::before {
    left: 100%;
}

.detail-item {
    opacity: 0;
    transform: translateX(-10px);
    animation: fadeInRight 0.5s ease forwards;
}

.detail-item:nth-child(1) { animation-delay: 0.1s; }
.detail-item:nth-child(2) { animation-delay: 0.2s; }
.detail-item:nth-child(3) { animation-delay: 0.3s; }
.detail-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.category-title {
    position: relative;
    display: inline-block;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3b82f6;
    transition: width 0.3s ease;
}

.category-card:hover .category-title::after {
    width: 100%;
}

.status-active {
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.status-active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* ===== BRAND SLIDER ANIMATION ===== */
.brands-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 0;
}

.brands-slider-track {
    display: flex;
    animation: scroll-left 40s linear infinite;
    min-width: max-content;
}

.brands-slider-track:hover {
    animation-play-state: paused;
}

.brand-slide-item {
    flex: 0 0 auto;
    margin: 0 2rem;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.brand-slide-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.brand-slide-item img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2));
    }
}

/* ===== MODAL STYLES ===== */
.image-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity .3s ease;
}

.image-modal.open {
    display: flex;
    opacity: 1;
}

.image-modal .content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal img {
    width: 70vw;
    height: 70vh;
    object-fit: contain;
    border-radius: 0;
}

.image-modal .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: background .2s ease;
}

.image-modal .close-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* ===== PRODUCT ENHANCED STYLES ===== */
.prod-filter-section-wrapper {
    padding: 40px 20px;
    background: var(--prod-bg);
    border-bottom: 1px solid var(--prod-stroke);
}

.dark .prod-filter-section-wrapper {
    background: var(--prod-dark-2);
}

.prod-filter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.prod-filter-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prod-filter-controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Search Input */
.prod-search-input-wrapper {
    position: relative;
    width: 100%;
}

.prod-search-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    border: 1px solid var(--prod-stroke);
    border-radius: 8px;
    background: var(--prod-card-bg);
    color: var(--prod-dark);
    transition: all 0.3s ease;
}

.dark .prod-search-input {
    background: var(--prod-dark-3);
    border-color: var(--prod-dark-3);
    color: var(--prod-white);
}

.dark .prod-search-input::placeholder {
    color: var(--prod-body-color);
}

.prod-search-input:focus {
    outline: none;
    border-color: var(--prod-primary);
    box-shadow: 0 0 0 3px rgba(48, 86, 211, 0.1);
}

/* Filter Controls */
.prod-filter-buttons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.prod-filter-dropdown-wrapper {
    position: relative;
}

.prod-filter-dropdown-btn {
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    border: 1px solid var(--prod-stroke);
    background: var(--prod-card-bg);
    color: var(--prod-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dark .prod-filter-dropdown-btn {
    background: var(--prod-dark-3);
    border-color: var(--prod-dark-3);
    color: var(--prod-white);
}

.dark .prod-filter-dropdown-btn span {
    color: var(--prod-white);
}

.prod-filter-dropdown-btn:hover {
    border-color: var(--prod-primary);
}

/* Dropdown Menu */
.prod-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 220px;
    margin-top: 8px;
    background: var(--prod-card-bg);
    border: 1px solid var(--prod-stroke);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.dark .prod-dropdown-menu {
    background: var(--prod-dark-3);
    border-color: var(--prod-dark-3);
}

.prod-dropdown-menu.prod-dropdown-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.prod-dropdown-option {
    display: block;
    width: 100%;
    padding: 12px 16px;
    text-align: left;
    background: none;
    border: none;
    font-size: 14px;
    color: var(--prod-dark);
    cursor: pointer;
    transition: all 0.2s ease;
}

.dark .prod-dropdown-option {
    color: var(--prod-white);
}

.prod-dropdown-option:hover {
    background: rgba(48, 86, 211, 0.1);
}

.dark .prod-dropdown-option:hover {
    background: rgba(48, 86, 211, 0.2);
}

.prod-dropdown-option.prod-option-active {
    background: var(--prod-primary);
    color: white;
}

/* Selected Chips & Clear Filters */
.prod-selected-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.prod-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(48, 86, 211, 0.1);
    color: var(--prod-primary);
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

.dark .prod-chip {
    background: rgba(48, 86, 211, 0.2);
    color: #a3bffa;
}

.prod-chip-remove {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-clear-filters {
    padding: 8px 16px;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dark .prod-clear-filters {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    border-color: rgba(239, 68, 68, 0.3);
}

.prod-clear-filters:hover {
    background: rgba(239, 68, 68, 0.2);
}

/* ===== PRODUCT GRID SECTION ===== */
.prod-grid-section-wrapper {
    padding: 60px 20px;
    background: var(--prod-bg);
}

.dark .prod-grid-section-wrapper {
    background: var(--prod-dark-2);
}

.prod-grid-container {
    max-width: 1200px;
    margin: 0 auto;
}

.prod-grid-section-title {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    animation: prodFadeInDown 0.8s ease forwards;
}

.prod-grid-section-title h2 {
    font-size: 2rem;
    color: var(--prod-dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.dark .prod-grid-section-title h2 {
    color: var(--prod-white);
}

.prod-grid-section-title p {
    color: var(--prod-body-color);
    font-size: 1rem;
}

.dark .prod-grid-section-title p {
    color: var(--prod-body-color);
}

.prod-cards-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

/* ===== PRODUCT CARD STYLES ===== */
.prod-item-card-enhanced {
    background: var(--prod-card-bg);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(50px);
    border: 1px solid rgba(48, 86, 211, 0.1);
}

.dark .prod-item-card-enhanced {
    background: var(--prod-card-bg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border-color: rgba(48, 86, 211, 0.2);
}

.prod-item-card-enhanced.prod-animate-visible {
    animation: prodSlideUp 0.8s ease forwards;
}

.prod-item-card-enhanced:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(48, 86, 211, 0.2);
}

.dark .prod-item-card-enhanced:hover {
    box-shadow: 0 30px 80px rgba(48, 86, 211, 0.3);
}

.prod-item-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--prod-primary);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.prod-item-card-enhanced:hover::before {
    transform: scaleX(1);
}

/* Card Content */
.prod-item-card-title-text {
    display: block;
    margin-bottom: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--prod-dark);
    position: relative;
}

.dark .prod-item-card-title-text {
    color: var(--prod-white);
}

.prod-item-card-title-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--prod-primary);
    transition: width 0.4s ease;
}

.prod-item-card-enhanced:hover .prod-item-card-title-text::after {
    width: 80px;
}

.prod-item-brand-text {
    font-size: 0.875rem;
    color: var(--prod-body-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.dark .prod-item-brand-text {
    color: var(--prod-body-color);
}

/* Product Image */
.prod-item-image-wrapper {
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    width: 180px;
    height: 180px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    background: rgba(48, 86, 211, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark .prod-item-image-wrapper {
    background: rgba(48, 86, 211, 0.08);
}

.prod-item-image-enhanced {
    width: 140px;
    height: 140px;
    object-fit: contain;
    transition: transform 0.4s ease;
    cursor: pointer;
    animation: prodPulseAnimation 2s ease-in-out infinite;
}

.prod-item-card-enhanced:hover .prod-item-image-enhanced {
    transform: scale(1.15) rotate(5deg);
}

/* Price Section */
.prod-item-price-section {
    margin-bottom: 20px;
    text-align: center;
}

.prod-item-price-main {
    font-size: 2rem;
    font-weight: 700;
    color: var(--prod-primary);
    margin-bottom: 4px;
}

.prod-item-price-original {
    font-size: 1rem;
    color: var(--prod-body-color);
    text-decoration: line-through;
}

/* Details Section */
.prod-item-details-section {
    margin-bottom: 50px;
}

.prod-item-details-heading {
    margin-bottom: 20px;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--prod-dark);
}

.dark .prod-item-details-heading {
    color: var(--prod-white);
}

.prod-item-details-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.prod-detail-item-enhanced {
    font-size: 0.95rem;
    color: var(--prod-body-color);
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.prod-item-card-enhanced:hover .prod-detail-item-enhanced {
    opacity: 1;
    transform: translateX(0);
}

.prod-detail-item-enhanced:nth-child(1) { animation: prodSlideInLeft 0.5s ease 0.2s forwards; }
.prod-detail-item-enhanced:nth-child(2) { animation: prodSlideInLeft 0.5s ease 0.4s forwards; }
.prod-detail-item-enhanced:nth-child(3) { animation: prodSlideInLeft 0.5s ease 0.6s forwards; }
.prod-detail-item-enhanced:nth-child(4) { animation: prodSlideInLeft 0.5s ease 0.8s forwards; }

.prod-detail-item-enhanced::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--prod-primary);
    margin-right: 12px;
    flex-shrink: 0;
}

/* Rating & Status */
.prod-rating-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.prod-rating-stars {
    color: #FFC107;
    font-size: 1.2rem;
}

.prod-rating-text {
    font-size: 0.875rem;
    color: var(--prod-body-color);
}

.prod-status-badge-stock {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(34, 197, 94, 0.1);
    color: #22C55E;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
}

.prod-status-badge-limited {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(251, 146, 60, 0.1);
    color: #FB923C;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Action Buttons */
.prod-item-action-buttons {
    display: flex;
    gap: 12px;
}

.prod-item-buy-button {
    flex: 1;
    display: inline-block;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    color: white;
    background: var(--prod-primary);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(48, 86, 211, 0.3);
    border: none;
}

.prod-item-buy-button:hover {
    background: #2047b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(48, 86, 211, 0.4);
}

.prod-item-cart-button {
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    color: var(--prod-primary);
    background: rgba(48, 86, 211, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.dark .prod-item-cart-button {
    color: #a3bffa;
    background: rgba(48, 86, 211, 0.2);
}

.prod-item-cart-button:hover {
    background: rgba(48, 86, 211, 0.2);
    transform: translateY(-2px);
}

.dark .prod-item-cart-button:hover {
    background: rgba(48, 86, 211, 0.3);
}

/* Decorative Elements */
.prod-decoration-shape-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    pointer-events: none;
    background: var(--prod-primary);
}

.dark .prod-decoration-shape-element {
    opacity: 0.1;
}

.prod-decoration-shape-top-right {
    width: 200px;
    height: 200px;
    right: -50px;
    top: -50px;
    animation: prodFloatAnimation 6s ease-in-out infinite;
}

.prod-decoration-shape-bottom-left {
    width: 150px;
    height: 150px;
    left: -30px;
    bottom: -30px;
    animation: prodFloatAnimation 8s ease-in-out infinite reverse;
}

/* ===== ENHANCED MODAL STYLES ===== */
.prod-image-modal-wrapper {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.85);
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.prod-image-modal-wrapper.prod-modal-open {
    display: flex;
    opacity: 1;
}

.prod-modal-content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: prodZoomIn 0.3s ease;
}

.prod-modal-image-display {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.prod-modal-close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    border: none;
    transition: all 0.3s ease;
}

.prod-modal-close-button:hover {
    background: var(--prod-primary);
    transform: rotate(90deg) scale(1.1);
}

/* ===== ANIMATIONS ===== */
@keyframes prodFadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes prodSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes prodSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes prodPulseAnimation {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes prodFloatAnimation {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes prodZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .prod-filter-section-wrapper {
        padding: 30px 15px;
    }
    
    .prod-grid-section-wrapper {
        padding: 40px 15px;
    }
    
    .prod-grid-section-title h2 {
        font-size: 1.5rem;
    }
    
    .prod-item-card-enhanced {
        padding: 30px 24px;
    }

    .prod-item-image-wrapper {
        width: 140px;
        height: 140px;
    }

    .prod-item-image-enhanced {
        width: 100px;
        height: 100px;
    }

    .prod-filter-dropdown-btn {
        min-width: 150px;
    }

    .prod-item-action-buttons {
        flex-direction: column;
    }

    .prod-filter-buttons-row {
        flex-direction: column;
    }

    .prod-filter-dropdown-wrapper {
        width: 100%;
    }

    .prod-filter-dropdown-btn {
        width: 100%;
    }
    
    .prod-cards-grid-wrapper {
        grid-template-columns: 1fr;
    }
    
    .brand-slide-item {
        margin: 0 1rem;
    }
    
    .brand-slide-item img {
        height: 30px;
    }
    
    .brands-slider-track {
        animation: scroll-left 30s linear infinite;
    }
}

@media (max-width: 480px) {
    .brand-slide-item {
        margin: 0 0.5rem;
    }
    
    .brand-slide-item img {
        height: 25px;
    }
}

      .dark {
        --vm-white: #1D2144;
        --vm-dark: #ffffff;
        --vm-body-color: #8899A8;
      }

      .vision-mission-section-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 20px;
      }

      .vision-mission-section-title {
        text-align: center;
        margin-bottom: 60px;
        opacity: 0;
        animation: vmFadeInDown 0.8s ease forwards;
      }

      .vision-mission-section-title h2 {
        font-size: 3rem;
        color: var(--vm-dark);
        font-weight: 700;
        margin-bottom: 10px;
      }

      .vision-mission-section-title p {
        color: var(--vm-body-color);
        font-size: 1.1rem;
      }

      .vision-mission-cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        gap: 40px;
        margin-top: 40px;
      }

      @media (max-width: 768px) {
        .vision-mission-cards-grid {
          grid-template-columns: 1fr;
        }
      }

      .vision-mission-card {
        background: var(--vm-white);
        border-radius: 20px;
        padding: 40px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        opacity: 0;
        transform: translateY(50px);
        border: 1px solid rgba(48, 86, 211, 0.1);
      }

      .dark .vision-mission-card {
        background: var(--vm-dark-2);
        box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        border-color: rgba(48, 86, 211, 0.2);
      }

      .vision-mission-card.vm-animate-visible {
        animation: vmSlideUp 0.8s ease forwards;
      }

      .vision-mission-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 30px 80px rgba(48, 86, 211, 0.2);
      }

      .dark .vision-mission-card:hover {
        box-shadow: 0 30px 80px rgba(48, 86, 211, 0.3);
      }

      .vision-mission-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--vm-primary);
        transform: scaleX(0);
        transition: transform 0.6s ease;
      }

      .vision-mission-card:hover::before {
        transform: scaleX(1);
      }

      .vision-mission-card-icon-wrapper {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: var(--vm-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        color: white;
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
        animation: vmPulseAnimation 2s ease-in-out infinite;
        box-shadow: 0 10px 30px rgba(48, 86, 211, 0.3);
      }

      .vision-mission-card-icon-wrapper::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 3px solid var(--vm-primary);
        animation: vmRippleAnimation 2s ease-out infinite;
      }

      .vision-mission-card-heading {
        font-size: 2rem;
        font-weight: 700;
        color: var(--vm-dark);
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
      }

      .vision-mission-card-heading::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 3px;
        background: var(--vm-primary);
        transition: width 0.4s ease;
      }

      .vision-mission-card:hover .vision-mission-card-heading::after {
        width: 100%;
      }

      .vision-mission-card-text-content {
        color: var(--vm-body-color);
        line-height: 1.8;
        font-size: 1rem;
      }

      .vision-mission-list-items {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .vision-mission-list-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 18px;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
      }

      .vision-mission-card:hover .vision-mission-list-item {
        opacity: 1;
        transform: translateX(0);
      }

      .vision-mission-list-item:nth-child(1) { animation: vmSlideInLeft 0.5s ease 0.2s forwards; }
      .vision-mission-list-item:nth-child(2) { animation: vmSlideInLeft 0.5s ease 0.4s forwards; }
      .vision-mission-list-item:nth-child(3) { animation: vmSlideInLeft 0.5s ease 0.6s forwards; }
      .vision-mission-list-item:nth-child(4) { animation: vmSlideInLeft 0.5s ease 0.8s forwards; }
      .vision-mission-list-item:nth-child(5) { animation: vmSlideInLeft 0.5s ease 1s forwards; }

      .vision-mission-list-icon-number {
        min-width: 30px;
        height: 30px;
        border-radius: 50%;
        background: var(--vm-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        color: white;
        font-weight: 700;
        font-size: 0.8rem;
        box-shadow: 0 4px 10px rgba(48, 86, 211, 0.3);
        transition: all 0.3s ease;
      }

      .vision-mission-list-item:hover .vision-mission-list-icon-number {
        transform: rotate(360deg) scale(1.1);
        box-shadow: 0 6px 15px rgba(48, 86, 211, 0.5);
      }

      .vision-mission-decoration-shape {
        position: absolute;
        border-radius: 50%;
        opacity: 0.05;
        pointer-events: none;
        background: var(--vm-primary);
      }

      .dark .vision-mission-decoration-shape {
        opacity: 0.1;
      }

      .vision-mission-decoration-shape-top {
        width: 200px;
        height: 200px;
        right: -50px;
        top: -50px;
        animation: vmFloatAnimation 6s ease-in-out infinite;
      }

      .vision-mission-decoration-shape-bottom {
        width: 150px;
        height: 150px;
        left: -30px;
        bottom: -30px;
        animation: vmFloatAnimation 8s ease-in-out infinite reverse;
      }

      /* Animations */
      @keyframes vmFadeInDown {
        from {
          opacity: 0;
          transform: translateY(-30px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes vmSlideUp {
        from {
          opacity: 0;
          transform: translateY(50px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      @keyframes vmSlideInLeft {
        from {
          opacity: 0;
          transform: translateX(-20px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      @keyframes vmPulseAnimation {
        0%, 100% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.05);
        }
      }

      @keyframes vmRippleAnimation {
        0% {
          transform: scale(1);
          opacity: 1;
        }
        100% {
          transform: scale(1.5);
          opacity: 0;
        }
      }

      @keyframes vmFloatAnimation {
        0%, 100% {
          transform: translateY(0) rotate(0deg);
        }
        50% {
          transform: translateY(-20px) rotate(180deg);
        }
      }

      /* Responsive */
      @media (max-width: 768px) {
        .vision-mission-section-title h2 {
          font-size: 2rem;
        }
        
        .vision-mission-card {
          padding: 30px;
        }

        .vision-mission-card-heading {
          font-size: 1.5rem;
        }

        .vision-mission-section-wrapper {
          padding: 40px 20px;
        }
      }