/* Root Variables */
:root {
    --gold: #d4af37;
    --gold-light: #e8c964;
    --gold-dark: #b8942e;
    --black: #050505;
    --black-light: #111111;
    --black-lighter: #1a1a1a;
    --white: #ffffff;
    --gray: #888888;
    --gray-light: #cccccc;
    --success: #28a745;
    --error: #dc3545;
    --transition: 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    color: var(--gray);
    text-align: center;
    margin-bottom: 50px;
    font-size: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

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

.btn-full {
    width: 100%;
}

.btn-lg {
    padding: 18px 45px;
    font-size: 16px;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 80px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

/* Logo Golden Glow Container */
.logo {
    position: relative;
}

.logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.2) 0%, transparent 60%);
    border-radius: 50%;
    animation: glowExpand 4s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes glowExpand {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

/* Logo Image Styles - Nice, Big and Bold */
.logo-img {
    height: 90px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
    transition: var(--transition);
    animation: logoGlow 3s ease-in-out infinite;
}

.logo-img:hover {
    transform: scale(1.08);
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.9)) drop-shadow(0 0 60px rgba(212, 175, 55, 0.4));
}

/* Golden Glow Animation */
@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5)) drop-shadow(0 0 30px rgba(212, 175, 55, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.8)) drop-shadow(0 0 50px rgba(212, 175, 55, 0.5));
    }
}

.logo-img-mobile {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.logo-img-mobile-header {
    height: 100px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    position: relative;
    transition: var(--transition);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover,
nav a.active {
    color: var(--gold);
}

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

.user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--black-light);
    border: 2px solid var(--gold);
    transition: var(--transition);
}

.user-icon:hover {
    transform: scale(1.05);
    border-color: var(--gold-light);
}

.profile-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.admin-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    transition: var(--transition);
}

.admin-link:hover {
    transform: scale(1.05);
    background: var(--gold-light);
}

.cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--black-light);
    border: 2px solid var(--gold);
    transition: var(--transition);
    position: relative;
    font-size: 20px;
    color: var(--white);
    text-decoration: none;
}

.cart-icon:hover {
    transform: scale(1.05);
    border-color: var(--gold-light);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: var(--black);
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.8));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 800px;
}

/* Slider Controls */
.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.hero-slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-prev {
    left: 20px;
}

.hero-slider-next {
    right: 20px;
}

/* Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: var(--gold);
}

.hero-slider-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    width: 32px;
    border-radius: 6px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .hero-slider-prev {
        left: 10px;
    }
    
    .hero-slider-next {
        right: 10px;
    }
    
    .hero-slider-dots {
        bottom: 20px;
        gap: 8px;
    }
    
    .hero-slider-dot {
        width: 8px;
        height: 8px;
    }
    
    .hero-slider-dot.active {
        width: 24px;
    }
    
    .hero-content {
        padding: 20px;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 250px;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('https://images.unsplash.com/photo-1603575448364-8c3cbbf09c74?w=1920') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.8));
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray-light);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

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

/* Sections */
.section {
    padding: 100px 0;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: var(--black-light);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.product-image {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-actions {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
}

.product-action-btn {
    width: 45px;
    height: 45px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-action-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-category {
    color: var(--gold);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-name {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-price {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-price .original-price {
    color: var(--gray);
    text-decoration: line-through;
    font-size: 1rem;
    margin-left: 10px;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.section-cta {
    text-align: center;
}

/* Services Section */
.services-section {
    background: var(--black-lighter);
}

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

.service-card {
    background: var(--black-light);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
    color: var(--black);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray);
    font-size: 14px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay span {
    color: var(--gold);
    font-weight: 500;
}

/* Testimonials */
.testimonials-section {
    background: var(--black-lighter);
}

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

.testimonial-card {
    background: var(--black-light);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
}

.stars {
    color: var(--gold);
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 25px;
    color: var(--gray-light);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-weight: 600;
    color: var(--white);
}

.author-location {
    font-size: 13px;
    color: var(--gray);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content .section-title {
    text-align: left;
}

.about-content p {
    color: var(--gray-light);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
}

.feature i {
    font-size: 18px;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Section */
.contact-section {
    background: var(--black-lighter);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--gray);
    font-size: 14px;
}

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

/* Footer */
footer {
    background: var(--black);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
}

.footer-brand .logo-glow-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.footer-brand .social-links {
    margin-top: 15px;
    margin-bottom: 15px;
}

.footer-brand > p {
    margin-top: 20px;
}

.footer-brand p {
    color: var(--gray);
    margin-bottom: 20px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--black-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--black);
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links a {
    display: block;
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-methods span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid var(--black-lighter);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 14px;
}

/* Product Page - Push content below fixed menu bar */
.product-hero-section {
    padding-top: 140px;
    padding-bottom: 60px;
    background: var(--black-lighter);
}

/* Shop Page */
.shop-hero {
    padding-top: 150px;
    padding-bottom: 50px;
    background: var(--black-lighter);
    text-align: center;
}

.shop-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.shop-hero p {
    color: var(--gray);
}

.shop-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 1px solid var(--gray);
    color: var(--gray);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--gold);
    color: var(--gold);
}

/* Cart Page */
.cart-page {
    padding-top: 150px;
    padding-bottom: 100px;
    min-height: 100vh;
}

.cart-page h1 {
    text-align: center;
    margin-bottom: 50px;
}

.cart-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

.cart-items {
    background: var(--black-light);
    border-radius: 20px;
    padding: 30px;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--black-lighter);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
}

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

.cart-item-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.cart-item-info p {
    color: var(--gray);
    font-size: 14px;
}

.cart-item-price {
    color: var(--gold);
    font-weight: 600;
    margin-top: 10px;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--black-lighter);
    border-radius: 50px;
    padding: 5px;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition);
}

.quantity-btn:hover {
    color: var(--gold);
}

.quantity-value {
    width: 40px;
    text-align: center;
    font-weight: 500;
}

.remove-item {
    background: none;
    border: none;
    color: var(--error);
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}

.remove-item:hover {
    text-decoration: underline;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart i {
    font-size: 60px;
    color: var(--gray);
    margin-bottom: 20px;
}

.empty-cart p {
    color: var(--gray);
    margin-bottom: 30px;
}

/* Cart Summary */
.cart-summary {
    background: var(--black-light);
    border-radius: 20px;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.cart-summary h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--black-lighter);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.summary-row span:first-child {
    color: var(--gray);
}

.summary-total {
    font-size: 1.3rem;
    font-weight: 600;
    padding-top: 15px;
    border-top: 1px solid var(--black-lighter);
    margin-top: 15px;
}

.summary-total span:last-child {
    color: var(--gold);
}

.checkout-btn {
    margin-top: 25px;
}

/* Checkout Page */
.checkout-page {
    padding-top: 150px;
    padding-bottom: 100px;
    min-height: 100vh;
}

.checkout-page h1 {
    text-align: center;
    margin-bottom: 50px;
}

.checkout-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.checkout-form {
    background: var(--black-light);
    border-radius: 20px;
    padding: 40px;
}

.form-section {
    margin-bottom: 35px;
}

.form-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--gray-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--black-lighter);
    border: 1px solid var(--black-lighter);
    border-radius: 10px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Payment Methods */
.payment-methods-section {
    margin-top: 30px;
}

.payment-option {
    background: var(--black-lighter);
    border: 2px solid var(--black-lighter);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.payment-option:hover,
.payment-option.selected {
    border-color: var(--gold);
}

.payment-option-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.payment-option.selected .payment-radio {
    border-color: var(--gold);
}

.payment-radio::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.payment-option.selected .payment-radio::after {
    opacity: 1;
}

.payment-icon {
    font-size: 24px;
    color: var(--gold);
}

.payment-details {
    flex: 1;
}

.payment-details h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.payment-details p {
    color: var(--gray);
    font-size: 13px;
}

.payment-form {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--black-lighter);
    display: none;
}

.payment-option.selected .payment-form {
    display: block;
}

/* Mobile Money Fields */
.mobile-money-fields {
    margin-top: 15px;
}

.network-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.network-btn {
    flex: 1;
    padding: 12px;
    background: var(--black);
    border: 2px solid var(--black);
    border-radius: 10px;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.network-btn:hover,
.network-btn.selected {
    border-color: var(--gold);
    color: var(--gold);
}

/* Order Summary */
.order-summary {
    background: var(--black-light);
    border-radius: 20px;
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.order-summary h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.order-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--black-lighter);
}

.order-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

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

.order-item-info {
    flex: 1;
}

.order-item-info h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.order-item-info p {
    color: var(--gray);
    font-size: 12px;
}

.order-item-price {
    color: var(--gold);
    font-weight: 500;
}

/* Success Page */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.success-content {
    max-width: 500px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 50px;
    color: var(--white);
}

.success-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.success-content p {
    color: var(--gray);
    margin-bottom: 30px;
}

.order-number {
    background: var(--black-light);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.order-number span {
    display: block;
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 5px;
}

.order-number strong {
    font-size: 1.5rem;
    color: var(--gold);
}

/* Responsive Design */
@media (max-width: 1024px) {
    header {
        padding: 15px 40px;
    }

    .cart-container,
    .checkout-container {
        grid-template-columns: 1fr;
    }

    .cart-summary,
    .order-summary {
        position: static;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    nav.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
    }

    .cart-item-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 12px 25px;
    }

    .checkout-form {
        padding: 25px;
    }
}

/* Toast Notifications */
.toast {
    position: fixed;
    top: 100px;
    right: 30px;
    min-width: 350px;
    max-width: 450px;
    background: var(--black-light);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    z-index: 9999;
    animation: slideIn 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
}

.toast-success {
    border-color: var(--success);
}

.toast-success .toast-icon {
    color: var(--success);
}

.toast-error {
    border-color: var(--error);
}

.toast-error .toast-icon {
    color: var(--error);
}

.toast-icon {
    font-size: 24px;
    min-width: 30px;
    text-align: center;
}

.toast-content {
    flex: 1;
}

.toast-content h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.toast-content p {
    margin: 0;
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
    transition: var(--transition);
}

.toast-close:hover {
    color: var(--white);
}

@keyframes slideIn {
    from { 
        transform: translateX(100%); 
        opacity: 0; 
    }
    to { 
        transform: translateX(0); 
        opacity: 1; 
    }
}

@keyframes slideOut {
    from { 
        transform: translateX(0); 
        opacity: 1; 
    }
    to { 
        transform: translateX(100%); 
        opacity: 0; 
    }
}

/* Responsive Toast */
@media (max-width: 768px) {
    .toast {
        right: 15px;
        left: 15px;
        min-width: auto;
        max-width: none;
    }
}

/* Service Cards */
.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: var(--gold);
    font-size: 14px;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Featured New Products */
.featured-new {
    position: relative;
    border: 2px solid var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.featured-new::before {
    content: 'NEW';
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--gold);
    color: var(--black);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: bold;
    z-index: 1;
}

.featured-new .product-badge {
    background: var(--gold);
    color: var(--black);
    font-weight: bold;
}

.badge-gold {
    background: linear-gradient(135deg, var(--gold), #d4af37);
    color: var(--black);
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Featured Products Carousel */
.featured-carousel-section {
    background: var(--black-light);
    padding: 80px 0;
    overflow: hidden;
}

.featured-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: var(--black);
    padding: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 20px;
}

.carousel-slide {
    flex: 0 0 280px;
    opacity: 0;
    transform: translateX(50px) scale(0.9);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.carousel-slide.prev {
    opacity: 0.7;
    transform: translateX(-20px) scale(0.95);
}

.carousel-slide.next {
    opacity: 0.7;
    transform: translateX(20px) scale(0.95);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold);
    color: var(--black);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.carousel-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-light);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.3);
}

.carousel-dot:hover {
    background: var(--gold);
    opacity: 0.7;
}

/* Carousel Product Cards */
.carousel-product-card {
    background: var(--black-light);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    border-color: var(--gold);
}

.carousel-product-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.carousel-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.carousel-product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gold);
    color: var(--black);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

.new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #ff6b6b, #ff8787);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.carousel-product-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-product-card:hover .carousel-product-actions {
    opacity: 1;
}

.carousel-action-btn {
    background: var(--gold);
    color: var(--black);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-action-btn:hover {
    background: var(--white);
    transform: scale(1.1);
}

.carousel-product-info {
    padding: 20px;
}

.carousel-product-info h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.1rem;
    line-height: 1.3;
}

.carousel-product-price {
    margin-bottom: 15px;
}

.carousel-original-price {
    text-decoration: line-through;
    color: var(--gray-light);
    font-size: 0.9rem;
    margin-right: 10px;
}

.carousel-current-price {
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: bold;
}

.carousel-add-to-cart-btn {
    width: 100%;
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-add-to-cart-btn:hover {
    background: var(--white);
    transform: translateY(-2px);
}

/* Featured New Slide Styling */
.featured-new-slide .carousel-product-card {
    border: 2px solid var(--gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.featured-new-slide .carousel-product-badge {
    background: linear-gradient(135deg, var(--gold), #d4af37);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Auto-scroll Animation */
@keyframes autoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.carousel-track.auto-scroll {
    animation: autoScroll 20s linear infinite;
}

.carousel-track.auto-scroll:hover {
    animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 768px) {
    .featured-carousel-section {
        padding: 40px 0;
    }
    
    .carousel-container {
        padding: 15px;
        margin: 0 10px;
    }
    
    .carousel-track {
        gap: 15px;
    }
    
    .carousel-slide {
        flex: 0 0 calc(100% - 30px); /* One image at a time */
        opacity: 0;
        transform: translateX(100px) scale(0.9);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .carousel-slide.active {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    
    .carousel-slide.prev,
    .carousel-slide.next {
        opacity: 0;
        transform: translateX(-100px) scale(0.8);
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
        background: rgba(212, 175, 55, 0.9);
        backdrop-filter: blur(10px);
    }
    
    .carousel-prev {
        left: 5px;
    }
    
    .carousel-next {
        right: 5px;
    }
    
    .carousel-product-card {
        margin: 0 auto;
        max-width: 320px;
    }
    
    .carousel-product-image {
        height: 280px;
    }
    
    .carousel-product-info {
        padding: 15px;
    }
    
    .carousel-product-info h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .carousel-current-price {
        font-size: 1.2rem;
    }
    
    .carousel-dots {
        margin-top: 20px;
        gap: 8px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    /* Hide other slides completely on mobile */
    .carousel-slide:not(.active) {
        display: none;
    }
    
    /* Ensure only one slide is visible */
    .carousel-slide.active {
        display: block;
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@media (max-width: 480px) {
    .carousel-container {
        padding: 10px;
        margin: 0 5px;
    }
    
    .carousel-slide {
        flex: 0 0 calc(100% - 20px);
    }
    
    .carousel-product-image {
        height: 250px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .carousel-prev {
        left: 2px;
    }
    
    .carousel-next {
        right: 2px;
    }
    
    .carousel-product-info {
        padding: 12px;
    }
    
    .carousel-current-price {
        font-size: 1.1rem;
    }
    
    .carousel-add-to-cart-btn {
        padding: 8px;
        font-size: 0.9rem;
    }
}

/* Pagination Styles - Compact */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    font-size: 13px;
}

.pagination .page-item {
    list-style: none;
}

.pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 12px;
    background: var(--black-light);
    border: 1px solid var(--gold);
    border-radius: 6px;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    font-weight: 600;
}

.pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--black-light);
    color: var(--gray);
    border-color: var(--gray-light);
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    padding: 0 14px;
    font-weight: 600;
    font-size: 12px;
}

/* Replace angle brackets with Prev/Next text */
.pagination .page-item:first-child .page-link::before {
    content: "Prev";
}

.pagination .page-item:last-child .page-link::before {
    content: "Next";
}

/* Hide the original arrow symbols and text */
.pagination .page-item:first-child .page-link span,
.pagination .page-item:last-child .page-link span,
.pagination .page-item:first-child .page-link svg,
.pagination .page-item:last-child .page-link svg,
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    font-size: 0 !important;
}

/* Show only the ::before content */
.pagination .page-item:first-child .page-link::before,
.pagination .page-item:last-child .page-link::before {
    font-size: 12px !important;
}

/* Hide « and » symbols specifically */
.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    color: transparent !important;
}

.pagination .page-item:first-child .page-link::before,
.pagination .page-item:last-child .page-link::before {
    color: var(--black) !important;
}

.pagination .page-item:first-child .page-link:hover::before,
.pagination .page-item:last-child .page-link:hover::before {
    color: var(--black) !important;
}

/* Mobile Pagination */
@media (max-width: 768px) {
    .pagination {
        gap: 4px;
        padding: 0 10px;
        margin-top: 25px;
    }
    
    .pagination .page-link {
        min-width: 32px;
        height: 32px;
        padding: 0 10px;
        font-size: 12px;
        border-radius: 5px;
    }
    
    .pagination .page-item:first-child .page-link,
    .pagination .page-item:last-child .page-link {
        padding: 0 12px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .pagination {
        gap: 3px;
        margin-top: 20px;
    }
    
    .pagination .page-link {
        min-width: 30px;
        height: 30px;
        padding: 0 8px;
        font-size: 11px;
        border-radius: 4px;
    }
    
    .pagination .page-item:first-child .page-link,
    .pagination .page-item:last-child .page-link {
        padding: 0 10px;
        font-size: 10px;
    }
}

/* Override Laravel Tailwind Pagination - Gold Theme */
.pagination .inline-flex,
.pagination .relative,
.pagination .items-center {
    min-height: 36px !important;
    height: 36px !important;
    padding: 0 12px !important;
    font-size: 13px !important;
    background: var(--black-light) !important;
    border: 1px solid var(--gold) !important;
    color: var(--gold) !important;
    border-radius: 6px !important;
}

.pagination .inline-flex:hover,
.pagination .relative:hover,
.pagination .items-center:hover {
    background: var(--gold) !important;
    color: var(--black) !important;
    border-color: var(--gold) !important;
}

.pagination .px-4,
.pagination .px-2 {
    padding-left: 8px !important;
    padding-right: 8px !important;
}

.pagination .py-2 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}

.pagination .w-5,
.pagination .h-5 {
    width: 14px !important;
    height: 14px !important;
}

.pagination .text-sm {
    font-size: 11px !important;
}

.pagination .rounded-md,
.pagination .rounded-l-md,
.pagination .rounded-r-md {
    border-radius: 6px !important;
}

.pagination .ml-3,
.pagination .-ml-px {
    margin-left: 6px !important;
}

.pagination .gap-1 {
    gap: 6px !important;
}

/* Active page - Gold background */
.pagination [aria-current="page"] .inline-flex,
.pagination [aria-current="page"] .relative {
    background: var(--gold) !important;
    color: var(--black) !important;
    font-weight: 600 !important;
}

/* Disabled pagination items */
.pagination [aria-disabled="true"] .inline-flex,
.pagination [aria-disabled="true"] .relative {
    opacity: 0.5 !important;
    background: var(--black-light) !important;
    color: var(--gray) !important;
    border-color: var(--gray-light) !important;
    cursor: not-allowed !important;
}

/* Replace Previous/Next with text */
.pagination a[rel="prev"] .inline-flex::before,
.pagination span[aria-label*="Previous"] .inline-flex::before {
    content: "Prev";
}

.pagination a[rel="next"] .inline-flex::before,
.pagination span[aria-label*="Next"] .inline-flex::before {
    content: "Next";
}

/* Hide original arrow icons */
.pagination svg,
.pagination .inline-flex svg,
.pagination span[aria-hidden="true"] {
    display: none !important;
}

/* Modern Pagination Styles */
.pagination-container {
    margin-top: 40px;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.pagination-info {
    color: var(--gray);
    font-size: 14px;
}

.pagination-info span {
    color: var(--gold);
    font-weight: 600;
}

.pagination-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--black-light);
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pagination-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.pagination-btn-disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--black-light);
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination-number:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.pagination-number-active {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--black) !important;
    font-weight: 600;
}

.pagination-dots {
    color: var(--gray);
    padding: 0 8px;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .pagination-container {
        margin-top: 30px;
        padding: 15px 0;
    }
    
    .pagination-nav {
        gap: 6px;
    }
    
    .pagination-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
    
    .pagination-number {
        min-width: 36px;
        height: 36px;
        padding: 0 10px;
        font-size: 13px;
    }
    
    .pagination-numbers {
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .pagination-container {
        margin-top: 25px;
    }
    
    .pagination-info {
        font-size: 12px;
    }
    
    .pagination-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .pagination-number {
        min-width: 32px;
        height: 32px;
        padding: 0 8px;
        font-size: 12px;
    }
}

/* Mobile pagination compact gold */
@media (max-width: 768px) {
    .pagination .inline-flex,
    .pagination .relative,
    .pagination .items-center {
        min-height: 32px !important;
        height: 32px !important;
        padding: 0 10px !important;
        font-size: 12px !important;
        border-radius: 5px !important;
    }
    
    .pagination .px-4,
    .pagination .px-2 {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }
    
    .pagination .w-5,
    .pagination .h-5 {
        width: 12px !important;
        height: 12px !important;
    }
}
