/* Basic Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.promo-header {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px;
}

.top-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.top-banner span {
    margin-right: 10px;
}

/* Main Navigation */
.main-nav {
    background-color: white;
    border-bottom: 1px solid #e0e0e0;
}

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

.top-nav {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.top-nav-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    font-size: 12px;
}

.top-nav-links a {
    color: #767677;
    text-decoration: none;
}

.top-nav-links a:hover {
    color: #000;
}

.flag {
    font-size: 16px;
}

.main-nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo img {
    height: 24px;
}

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

.nav-link {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    padding: 10px 0;
}

.nav-link:hover {
    text-decoration: underline;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-bar {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px 12px;
    background-color: #f8f8f8;
}

.search-bar input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    width: 200px;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0;
    padding: 0;
}

.search-btn svg {
    width: 18px;
    height: 18px;
    stroke: #000;
    fill: none;
    stroke-width: 1.8;
}

.nav-icons {
    display: flex;
    gap: 15px;
}

.nav-icon {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0;
    position: relative;
    padding: 0;
}

.nav-icon svg {
    width: 22px;
    height: 22px;
    stroke: #000;
    fill: none;
    stroke-width: 1.8;
}

.nav-icon:hover svg {
    stroke-width: 2.1;
}

.cart-icon {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: #000;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
}

.hero-main {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #e9e9e9;
    position: relative;
}

.hero-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #e9e9e9 0%, #f5f5f5 40%, #e9e9e9 80%);
    background-size: 200% 100%;
    background-position: -100% 0;
    animation: skeleton-shimmer 1.2s linear infinite;
    pointer-events: none;
}

.hero-main.loaded::before {
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease;
}

.hero-main img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0;
    transition: opacity .35s ease;
}

.hero-main.loaded img {
    opacity: 1;
}

@keyframes skeleton-shimmer {
    100% { background-position: 100% 0; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-main::before { animation: none; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.35), transparent 55%);
    display: flex;
    align-items: center;
}

.hero-content {
    padding: 60px;
    color: white;
}

.hero-title {
    font-size: 80px;
    font-weight: bold;
    margin: 0 0 20px 0;
    letter-spacing: 8px;
    background-color: black;
    padding: 20px 40px;
    display: inline-block;
}

.hero-subtitle {
    font-size: 18px;
    margin: 20px 0 40px 0;
    font-weight: normal;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-secondary {
    background-color: white;
    color: black;
    border: 2px solid black;
    padding: 12px 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: black;
    color: white;
}

/* Grid Section */
.grid-section {
    padding: 60px 0;
    background-color: white;
}

.grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-5px);
}

.grid-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.grid-content {
    padding: 20px;
    background-color: white;
}

.grid-content h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.grid-content p {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.shop-btn {
    background-color: transparent;
    color: #000;
    border: 2px solid #000;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
}

.shop-btn:hover {
    background-color: #000;
    color: white;
}

/* Popular Right Now Section */
.popular-section {
    padding: 40px 0;
    background-color: #f8f8f8;
    text-align: center;
}

.popular-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.popular-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.popular-item {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.popular-item::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: black;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Prime Banner Section */
.prime-banner {
    position: relative;
    text-align: center;
    color: white;
}

.prime-banner img {
    width: 100%;
    height: auto;
}

.prime-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.prime-content h2 {
    font-size: 48px;
    margin: 0;
}

.prime-content p {
    font-size: 18px;
    margin: 10px 0;
}

.shop-now {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shop-now:hover {
    background-color: white;
    color: black;
}

/* Carousel Section */
.carousel-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.carousel-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.tab {
    background-color: transparent;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.tab.active {
    border-bottom: 2px solid black;
}

.view-all {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.carousel-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.carousel-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.carousel-item:hover {
    transform: translateY(-5px);
}

.carousel-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.carousel-content {
    padding: 15px;
}

.carousel-content h4 {
    font-size: 18px;
    margin: 0 0 5px 0;
}

.carousel-content p {
    font-size: 14px;
    margin: 0 0 5px 0;
    color: #666;
}

.carousel-content span {
    font-size: 12px;
    color: #999;
}

/* Text Section */
.text-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.text-container {
    max-width: 800px;
    margin: 0 auto;
}

.text-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.text-section p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

/* Join Adiclub Banner */
.adiclub-banner {
    background-color: #0071c2;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.adiclub-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.sign-up {
    background-color: white;
    color: #0071c2;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sign-up:hover {
    background-color: #005a9c;
    color: white;
}

/* Footer */
.footer {
    background-color: #000;
    color: #bdbdbd;
    padding: 48px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, minmax(140px, 1fr));
    gap: 24px;
}

.footer-column {
    min-width: 140px;
}

.footer-column h3 {
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 12px 0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 8px;
    font-size: 13px;
    color: #bdbdbd;
}

@media (max-width: 1024px) {
    .grid-container { grid-template-columns: repeat(2, 1fr); }
    .carousel-container { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
    .hero-title { font-size: 48px; padding: 12px 20px; }
    .hero-content { padding: 24px; }
    .grid-container { grid-template-columns: 1fr; }
    .carousel-container { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}
