* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #050505;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    overflow-x: hidden;
}

.glass-panel {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}

.glass-btn {
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
}

.navbar-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 800px;
    padding: 1rem 3rem;
    margin-top: 2rem;
    border-radius: 100px;
    background-color: rgba(255,255,255,0.3);
}

.navbar-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.apple-logo {
    width: 1.5rem;
    height: 1.5rem;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.navbar-link {
    text-decoration: none;
    color: rgba(0,0,0,0.5);
    font-weight: 700;
}

.navbar-link:hover {
    color: black;
}

.navbar-btn {
    font-size: 16px;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 16px;
    background-color: rgba(255,255,255,0.5);
}

/* hero styling */
.hero {
    position: relative;
    height: 110vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.hero-gradient {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, 
                        #050505 0%, 
                        transparent 50%,
                         #050505 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    padding: 0 1.5rem;
    text-align: center;
}

.hero-title {
    font-size: 8rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 3.5rem;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.btn-primary {
    font-size: 1rem;
    background-color: white;
    color: black;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
}

.btn-secondary {
    font-size: 1rem;
    padding: 1.5rem 3rem;
    color: white;
    border-radius: 50px;
    font-weight: 700;
}


/* footer */

.footer {
    background-color: transparent;
    padding: 8rem 1.5rem 4rem;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem;
    border-radius: 4rem;
}

.footer-grid {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-brand-title {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.footer-brand-desc {
    font-size: 1.25rem;
    max-width: 400px;
    color: rgba(255,255,255,0.3);
}

.footer-heading {
    font-size: 16px;
    margin-bottom: 2rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}

.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255,255,255,0.2);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    cursor: pointer;
}

/* about */

.about-apple {
    padding: 6rem 1.5rem;
    position: relative;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-apple-content {
    padding: 3rem 2rem;
    border-radius: 3rem;
    text-align: center;
}

.about-apple-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    margin-bottom: 2rem;
}

.about-apple-title {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.about-apple-description {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-apple-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
}



/* --- Products Styling --- */
.products {
    padding: 6rem 1.5rem;
    position: relative;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
}

.products-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

.products-title {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.category-filter {
    display: flex;
    gap: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.category-btn {
    padding: 0.5rem 1rem;
    font-weight: 700;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background-color: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.2);
}

/* Product grid layout */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

/* Individual product card */
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 2rem;
    padding: 1.5rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255,255,255,0.1);
}

/* Product info section */
.product-info {
    text-align: center;
    z-index: 2;
}

.product-category {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-tagline {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
}

.product-price {
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Product image */
.product-image-container {
    position: relative;
    margin: 1rem 0;
}

.product-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.product-image {
    width: 100%;
    border-radius: 1.5rem;
    z-index: 2;
    position: relative;
}

/* Product CTA button */
.product-cta {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.btn-add-bag {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-bag:hover {
    background-color: rgba(255,255,255,0.2);
}
