@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FFD700; /* Yellow */
    --accent: #E60000; /* Red */
    --accent-hover: #cc0000;
    --text-light: #ffffff;
    --text-dark: #222222;
    --text-muted: #555555;
    --bg-light: #f8f9fa;
    --bg-section: #ffffff;
    --border-color: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 70px;
}

body {
    font-family: 'Arial', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    padding: 20px 5%;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 15px 5%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    max-width: 1400px;
    margin: 0 auto;
    gap: 15px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-svg {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    flex-shrink: 0;
}

.logo-text {
    font-size: clamp(18px, 4.5vw, 26px);
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--accent);
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
    padding: 5px 10px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--accent);
}

.nav-cta {
    background: var(--accent);
    color: white !important;
    padding: 10px 25px !important;
    border-radius: 25px;
    font-weight: 600;
    white-space: nowrap;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 0, 0, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    flex-shrink: 0;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent);
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Menu Panel */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98); 
    backdrop-filter: blur(10px); 
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050; 
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mobile-nav.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 50px;
    color: var(--accent);
    cursor: pointer;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 1060;
}

.close-menu:hover {
    transform: rotate(90deg) scale(1.2);
}

.close-menu:active {
    transform: rotate(90deg) scale(0.9);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px; 
    list-style: none;
    width: 100%;
}

.mobile-nav-links li {
    opacity: 0;
    transform: translateY(20px); 
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-nav.active .mobile-nav-links li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.active .mobile-nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active .mobile-nav-links li:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav.active .mobile-nav-links li:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav.active .mobile-nav-links li:nth-child(4) { transition-delay: 0.4s; }
.mobile-nav.active .mobile-nav-links li:nth-child(5) { transition-delay: 0.5s; }

.mobile-nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 5px 10px;
    transition: color 0.3s ease;
}

.mobile-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--accent);
}

.mobile-nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 50px;
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    background: radial-gradient(circle at top right, rgba(255, 215, 0, 0.2), transparent 50%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
    align-items: center;
    gap: 40px;
}

.hero-left {
    padding-right: 20px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(230, 0, 0, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    border-radius: 20px;
}

.hero-title {
    font-size: clamp(35px, 6vw, 75px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.hero-title .accent {
    color: var(--accent);
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap; 
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--accent);
    display: block;
}

.stat-label {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--text-muted);
}

.cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 16px 35px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 10px 20px rgba(230, 0, 0, 0.2);
}

.cta-button.primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
}

.cta-button.outline {
    background: white;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.cta-button.outline:hover {
    background: var(--primary);
    color: var(--text-dark);
    border-color: var(--primary);
}

.hero-right {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 30px; /* Provides room for floating tags on all screens */
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4 / 5; 
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 8px solid var(--primary);
    background-color: #eee;
}

.hero-carousel {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 30px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    border-radius: 2px;
}

.indicator.active {
    background: var(--primary);
}

.floating-tags {
    position: absolute;
    bottom: -20px; /* Forces overlapping perfectly with the border */
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    z-index: 20;
}

.tag {
    padding: 8px 16px;
    background: white;
    color: var(--accent);
    font-weight: bold;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-size: 12px;
    border: 1px solid var(--border-color);
    white-space: nowrap; /* Forces text to stay in a single line */
}

/* Collections Area */
.collections {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 42px;
    color: var(--accent);
    margin-bottom: 10px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 16px;
}

/* Search Bar Styles */
.search-container {
    max-width: 600px;
    margin: 0 auto 40px auto;
    display: flex;
    flex-direction: row; /* Ensures it stays side-by-side even on small screens */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid var(--primary);
}

.search-container input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    outline: none;
    font-size: 16px;
    min-width: 0; 
}

.search-container button {
    padding: 0 25px;
    background: var(--accent);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s;
}

.search-container button:hover {
    background: var(--accent-hover);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 25px;
    background: white;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    cursor: pointer;
    font-weight: bold;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.collection-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s;
    border: 1px solid var(--border-color);
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.collection-thumbnail {
    aspect-ratio: 3 / 4;
    width: 100%;
    overflow: hidden;
    background-color: #f8f9fa;
}

.collection-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.collection-card:hover .collection-thumbnail img {
    transform: scale(1.08);
}

.card-content {
    padding: 20px;
}

.card-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--primary);
    color: #000;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 10px;
}

.card-title {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.card-subtitle {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 10px;
}

.card-price {
    font-size: 20px;
    color: var(--accent);
    font-weight: 800;
}

/* Pagination Styles */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    width: 100%;
    flex-wrap: wrap;
}

.page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.page-btn:hover {
    border-color: var(--primary);
    background-color: #fffdf0;
    transform: translateY(-2px);
}

.page-btn.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Featured Section */
.featured {
    padding: 100px 5%;
    background: white;
}

.featured-container {
    max-width: 1400px;
    margin: 0 auto;
}

.featured-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.featured-content h2 {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 20px;
}

.featured-content .label {
    color: var(--primary);
    font-weight: bold;
    text-transform: uppercase;
    background: #000;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 15px;
}

.featured-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.feature-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--accent);
}

.highlight-icon {
    font-size: 30px;
}

.highlight-title {
    font-weight: bold;
    color: var(--text-dark);
}

.highlight-desc {
    font-size: 13px;
    color: var(--text-muted);
}

.feature-cta {
    display: inline-block;
    padding: 15px 30px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    transition: 0.3s;
}

.feature-cta:hover {
    background: var(--accent-hover);
}

.featured-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.featured-img {
    background-color: #eee;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1 / 1; 
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-img:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
}

/* Testimonials */
.testimonials-header h3 {
    text-align: center;
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.testimonials-header p {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.testimonial-rating {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 20px;
    text-shadow: 0 0 1px #000;
}

.testimonial-quote {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.author-avatar {
    width: 40px; height: 40px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: bold;
}
.testimonial-author {
    display: flex; gap: 15px; align-items: center;
}
.author-info h4 { color: var(--text-dark); font-size: 15px;}
.author-info p { color: var(--text-muted); font-size: 12px;}

/* Contact Section */
.contact {
    padding: 100px 5%;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block; margin-bottom: 8px; font-weight: bold; color: var(--text-dark); font-size: 14px;
}

.form-group input, .form-group textarea {
    width: 100%; padding: 12px; border: 1px solid var(--border-color); border-radius: 8px; margin-bottom: 20px; outline: none; font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--accent);
}
.form-submit {
    background: var(--accent); color: white; border: none; padding: 15px 30px; width: 100%; border-radius: 8px; font-size: 16px; font-weight: bold; cursor: pointer; transition: 0.3s;
}
.form-submit:hover { background: var(--accent-hover); }

.contact-info {
    display: flex; flex-direction: column; gap: 30px;
}
.info-item {
    display: flex; gap: 20px; background: white; padding: 25px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.info-icon {
    font-size: 30px; color: var(--accent); flex-shrink: 0;
}
.info-content h3 { color: var(--text-dark); font-size: 18px; margin-bottom: 5px; }
.info-content p, .info-content a { color: var(--text-muted); text-decoration: none; font-size: 15px; }

/* Footer */
footer {
    background: #111;
    color: white;
    padding: 60px 5% 20px;
}
.footer-content {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1400px; margin: 0 auto 40px;
}
.footer-brand h3 { color: var(--primary); font-size: 28px; margin-bottom: 15px; }
.footer-brand p { color: #aaa; margin-bottom: 20px; line-height: 1.6; }
.social-links a {
    display: inline-flex; width: 35px; height: 35px; background: #333; color: white; align-items: center; justify-content: center; border-radius: 50%; text-decoration: none; margin-right: 10px; transition: 0.3s;
}
.social-links a:hover { background: var(--accent); }

.footer-column h4 { color: white; margin-bottom: 20px; font-size: 16px; }
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 10px; }
.footer-column ul a { color: #aaa; text-decoration: none; transition: 0.3s; }
.footer-column ul a:hover { color: var(--primary); padding-left: 5px; }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #333; padding-top: 20px; max-width: 1400px; margin: 0 auto; color: #aaa; font-size: 14px; flex-wrap: wrap; gap: 15px;
}

.payment-methods { display: flex; gap: 10px; }
.payment-icon { background: #222; padding: 5px 10px; border-radius: 4px; font-size: 12px; font-weight: bold; color: #fff;}


/* RESPONSIVE ADJUSTMENTS */

/* Specific rule to fix the "Desktop Site" simulated view on mobile (roughly 980px) */
@media (min-width: 901px) and (max-width: 1150px) {
    nav {
        padding: 15px 2%;
    }
    .nav-links {
        gap: 12px;
    }
    .nav-links a {
        font-size: 12px;
        padding: 5px;
    }
    .logo-text {
        font-size: 20px;
    }
    .nav-cta {
        padding: 8px 15px !important;
    }
}

/* Overrides to hide mobile nav correctly on Desktop */
@media (min-width: 901px) {
    .mobile-nav {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
    
    .hero-container, .featured-hero, .contact-content { grid-template-columns: 1fr; }
    .hero-right { margin-top: 30px; }
    .hero-left { padding-right: 0;}
    
    .form-row { flex-direction: column; gap: 0; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .hero-title { font-size: 32px; }
    .collections, .featured, .contact { padding: 60px 5%; }
    
    .hero-stats { justify-content: center; text-align: center; gap: 20px; }
    .hero-left { text-align: center; display: flex; flex-direction: column; align-items: center; }
    
    .cta-group { flex-direction: column; width: 100%; }
    .cta-group .cta-button { width: 100%; text-align: center; }
    
    .footer-content { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 25px 20px; }
    
    .search-container input { padding: 12px 15px; font-size: 14px; }
}

/* Fix floating tags for super small devices like iPhone SE */
@media (max-width: 400px) {
    .tag {
        padding: 6px 12px;
        font-size: 11px;
    }
}