/* ===== INNER HERO ===== */
.inner-hero {
    background: #EDE7DF;
    padding: 80px 20px;
    text-align: center;
    border-radius: 0 0 30px 30px;
    margin-bottom: 50px;
}

.inner-hero h1 {
    font-size: 40px;
    color: #333;
    margin-bottom: 10px;
}

.inner-hero p {
    color: #c89b63;
    font-weight: 500;
}

/* ===== SHOP PAGE ===== */
.shop-wrapper {
    display: flex;
    gap: 40px;
    padding: 0 60px 80px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.sidebar {
    width: 250px;
    flex-shrink: 0;
}

.sidebar h3 {
    font-size: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #EDE7DF;
    padding-bottom: 10px;
}

/* Custom Checkboxes */
.filter-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-size: 15px;
    color: #555;
    user-select: none;
    transition: color 0.3s;
}

.custom-checkbox:hover {
    color: #c89b63;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-right: 12px;
    transition: 0.3s;
}

.custom-checkbox:hover input~.checkmark {
    background-color: #e9e9e9;
}

.custom-checkbox input:checked~.checkmark {
    background-color: #c89b63;
    border-color: #c89b63;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.shop-breadcrumb {
    max-width: 1400px;
    margin: 20px auto 0 auto;
    padding: 0 60px;
    font-weight: 500;
}

.shop-breadcrumb a {
    color: #c89b63;
    text-decoration: none;
    transition: 0.3s;
}

.shop-breadcrumb a:hover {
    color: #333;
}

.shop-breadcrumb span {
    color: #666;
}

.shop-content {
    flex: 1;
}

/* ===== SINGLE PRODUCT ===== */
.single-product-wrapper {
    display: flex;
    gap: 50px;
    padding: 0 60px 80px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-gallery {
    flex: 1;
}

.product-gallery img {
    width: 100%;
    border-radius: 20px;
    background: #f8f8f8;
    object-fit: contain;
}

.product-details {
    flex: 1;
}

.product-details h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.product-details .price {
    font-size: 28px;
    color: #c89b63;
    margin-bottom: 20px;
}

.product-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.quantity-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.quantity-box input {
    width: 60px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
}

.buy-btns {
    display: flex;
    gap: 15px;
}

.btn-primary {
    padding: 15px 30px;
    background: #c89b63;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #333;
}

.btn-outline {
    padding: 15px 30px;
    border: 1px solid #333;
    color: #333;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #333;
    color: #fff;
}

/* ===== CONTACT PAGE ===== */
.contact-wrapper {
    display: flex;
    gap: 50px;
    padding: 0 60px 80px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info-box {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.contact-info-box h4 {
    margin-bottom: 10px;
    color: #c89b63;
}

.contact-form-area {
    flex: 1.5;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #c89b63;
}

/* ===== APPLE LEVEL ABOUT PAGE ===== */
.apple-hero {
    padding: 160px 20px 60px 20px;
}

.center-text {
    text-align: center;
}

.apple-title {
    font-size: 64px;
    font-weight: 600;
    color: #1d1d1f;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.apple-subtitle {
    font-size: 26px;
    color: #86868b;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.apple-hero-image {
    max-width: 1200px;
    margin: 0 auto 100px auto;
    padding: 0 40px;
}

.apple-hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.apple-split {
    display: flex;
    align-items: center;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto 140px auto;
    padding: 0 40px;
}

.apple-split-text {
    flex: 1.2;
}

.apple-heading {
    font-size: 48px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.apple-split-text p {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 24px;
}

.apple-split-image {
    flex: 1;
}

.apple-split-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.apple-features {
    background: #fbfbfd;
    padding: 120px 40px;
    margin-bottom: 60px;
}

.apple-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 80px auto 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

.apple-card {
    flex: 1;
    min-width: 320px;
    background: #fff;
    padding: 60px 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(29, 29, 31, 0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.apple-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(29, 29, 31, 0.08);
}

.apple-card .icon {
    font-size: 56px;
    margin-bottom: 30px;
}

.apple-card h4 {
    font-size: 28px;
    color: #1d1d1f;
    margin-bottom: 16px;
    font-weight: 600;
}

.apple-card p {
    font-size: 18px;
    color: #86868b;
    line-height: 1.6;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 992px) {

    .shop-wrapper,
    .single-product-wrapper,
    .contact-wrapper {
        flex-direction: column;
        padding: 0 30px 50px 30px;
    }

    .shop-breadcrumb {
        padding: 0 30px;
    }

    .sidebar {
        width: 100%;
    }

    .apple-split {
        flex-direction: column;
        gap: 50px;
    }
}

@media(max-width: 768px) {
    .inner-hero {
        padding: 60px 20px;
    }

    .inner-hero h1 {
        font-size: 30px;
    }

    .shop-breadcrumb {
        padding: 0 20px;
    }

    .apple-title {
        font-size: 42px;
    }

    .apple-subtitle {
        font-size: 20px;
    }

    .apple-hero {
        padding: 100px 20px 40px 20px;
    }

    .apple-hero-image {
        padding: 0 20px;
        margin-bottom: 60px;
    }

    .apple-hero-image img {
        height: 350px;
        border-radius: 20px;
    }

    .apple-split {
        padding: 0 20px;
        margin-bottom: 80px;
    }

    .apple-heading {
        font-size: 36px;
    }

    .apple-features {
        padding: 80px 20px;
    }

    .apple-card {
        padding: 40px 30px;
    }

    /* Global Section Overrides for Apple-level Mobile Feel */
    .product-section {
        padding: 40px 20px !important;
    }

    .promo-section {
        margin: 40px 20px !important;
        padding: 40px 20px !important;
    }

    .offer-section {
        margin: 40px 20px !important;
        padding: 60px 20px !important;
    }

    .hero-slider {
        height: auto !important;
        min-height: 80vh !important;
    }

    .slide {
        padding: 60px 20px 40px 20px !important;
    }
}