* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-orange: #ff9621;
    --primary-red: #ff5951;
    --primary-black: #111111;
    --secondary-gray: #f5f5f5;
    --light-gray: #eeeeee;
    --bg-orange-tint: #fff7f0;
}

body {
    background-color: var(--bg-orange-tint);
}

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

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-red));
    color: white;
    text-align: center;
    padding: 10px 0;
}

.announcement-bar p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

/* Header */
header {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.search-bar {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 4px;
    padding: 8px 15px;
    width: 400px;
    border: 1px solid #ddd;
}

.search-bar input {
    border: none;
    outline: none;
    width: 100%;
    margin-left: 10px;
    font-size: 14px;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    font-size: 14px;
}

.docs-btn {
    text-decoration: none;
    color: white;
    border: none;
    background-color: var(--primary-orange);
    border-radius: 4px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(255, 150, 33, 0.3);
}

.docs-btn:hover {
    background-color: #e08619;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 150, 33, 0.3);
}

.beta-access-btn {
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-red));
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(255, 89, 81, 0.3);
}

.beta-access-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 89, 81, 0.4);
}

/* Beta Form Overlay */
.beta-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.beta-form-container {
    background-color: white;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.3s ease;
}

.beta-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.beta-form-header h3 {
    margin: 0;
    color: #0d2b24;
    font-size: 18px;
}

.close-form {
    background: none;
    border: none;
    font-size: 18px;
    color: #666;
    cursor: pointer;
}

.beta-access-form {
    padding: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-red));
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 89, 81, 0.4);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Navigation */
.main-nav {
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

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

.nav-right a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fffbf7, #fff5f4);
    padding: 50px 0;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 150, 33, 0.1), rgba(255, 89, 81, 0.1));
    border-radius: 50%;
    z-index: 0;
}

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

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.brand-name {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary-black);
    margin-bottom: 20px;
    letter-spacing: -1px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.tagline-container {
    border-left: 4px solid var(--primary-orange);
    padding-left: 20px;
    margin-bottom: 25px;
}

.hero-text h1, .hero-text h2, .hero-text h3 {
    font-size: 42px;
    color: var(--primary-black);
    margin-bottom: 15px;
    font-weight: 800;
    line-height: 1.2;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-subtitle {
    font-size: 42px;
    color: var(--primary-black);
    margin-bottom: 25px;
    max-width: 500px;
    font-weight: 800;
}

.cta-button {
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-red));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(255, 89, 81, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 89, 81, 0.4);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 400px;
    height: auto;
}

/* Popular Brands Section */
.popular-brands {
    padding: 40px 0;
    background-color: white;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
    justify-content: center;
    margin: 0 auto;
    max-width: 1000px;
}

.brand-logo {
    background-color: white;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    height: 100px;
}

.brand-logo img {
    max-width: 80%;
    max-height: 70px;
    object-fit: contain;
}

.brand-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.brand-logo.coming-soon {
    cursor: default;
}

.brand-logo.coming-soon:hover {
    transform: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.coming-soon-overlay span {
    color: white;
    font-size: 14px;
    font-weight: 600;
    background-color: rgba(0,0,0,0.5);
    padding: 5px 10px;
    border-radius: 20px;
}

.grayscale {
    filter: grayscale(100%);
    opacity: 0.7;
}

/* Recommended Section */
.recommended {
    margin: 40px 0;
}

.recommended h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0d2b24;
}

.coming-soon-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(90deg, rgba(255, 150, 33, 0.1), rgba(255, 89, 81, 0.1));
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 3px solid var(--primary-orange);
}

.coming-soon-banner i {
    color: var(--primary-orange);
}

.coming-soon-banner span {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
    cursor: pointer;
    position: relative;
}

.product-card::after {
    content: 'View Details';
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-red));
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 150, 33, 0.15);
    border-color: rgba(255, 150, 33, 0.2);
}

.product-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.product-card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 10px;
}

.product-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 700;
}

.product-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
}

.price-range {
    color: var(--primary-black);
    font-weight: 700;
    font-size: 14px;
    background: linear-gradient(90deg, rgba(255, 150, 33, 0.1), rgba(255, 89, 81, 0.1));
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 5px;
}

/* Categories Section */
.categories {
    margin: 20px 0 40px;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.categories::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-red));
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    justify-content: center;
    justify-items: center;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 20px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
}

.category-item:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category-item i {
    font-size: 28px;
    color: #0d2b24;
    transition: color 0.3s ease;
}

.category-item p {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

/* Active category styling */
.active-category {
    background: linear-gradient(135deg, rgba(255, 150, 33, 0.1), rgba(255, 89, 81, 0.1));
    border-color: var(--primary-orange);
    box-shadow: 0 5px 15px rgba(255, 150, 33, 0.15);
}

.active-category i {
    color: var(--primary-red);
}

.active-category::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--primary-orange);
}

/* Footer */
.copyright-footer {
    background: linear-gradient(90deg, var(--primary-orange), var(--primary-red));
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
    width: 100%;
}

.copyright-footer p {
    color: white;
    font-size: 14px;
}
footer {
    background-color: #0d2b24;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #aaa;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

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

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

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

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

.social-links a {
    color: white;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #f35843;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .search-bar {
        order: 3;
        width: 100%;
        margin-top: 10px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-image {
        justify-content: center;
    }
    
    .hero-image img {
        max-width: 300px;
    }
    
    .brand-name {
        font-size: 46px;
    }
    
    .hero-text h1, .hero-text h2, .hero-text h3 {
        font-size: 34px;
    }
    
    .tagline-container {
        padding-left: 15px;
    }
    
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
    
    .header-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .docs-btn, .beta-access-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .main-nav .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-right {
        justify-content: center;
    }
    
    .hero-text h1, .hero-text h2, .hero-text h3 {
        font-size: 28px;
    }
    
    .brand-name {
        font-size: 38px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-content {
        justify-content: center;
    }
    
    .logo {
        margin-bottom: 10px;
    }
    
    .header-right {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 15px;
    }
    
    .docs-btn, .beta-access-btn {
        width: 100%;
        justify-content: center;
    }
    
    .brand-name {
        font-size: 32px;
        text-align: center;
    }
    
    .hero-text {
        align-items: center;
    }
    
    .tagline-container {
        border-left: none;
        padding-left: 0;
        text-align: center;
    }
    
    .hero-text h1, .hero-text h2, .hero-text h3 {
        font-size: 24px;
        text-align: center;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .hero-image img {
        max-width: 200px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .category-item {
        padding: 15px 10px;
    }
    
    .category-item i {
        font-size: 24px;
    }
}

/* Very small phones */
@media (max-width: 360px) {
    .hero-text h1, .hero-text h2, .hero-text h3 {
        font-size: 22px;
    }
    
    .brand-name {
        font-size: 28px;
    }
    
    .beta-form-container {
        width: 95%;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
