/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: #262626;
    background-color: #ffffff;
    line-height: 1.6;
}

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

/* Header */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #262626;
    letter-spacing: -0.02em;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #262626;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #737373;
}

.cart-btn {
    background-color: #262626;
    color: #fafafa;
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cart-btn:hover {
    background-color: #404040;
}

/* Hero Section */
.hero {
    padding: 2rem;
    background-color: #ffffff;
}

.hero-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #a8d5e2 0%, #8ec5d6 100%);
    border-radius: 2rem;
    overflow: hidden;
}

/* Hero Background Image */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Hero Text Overlay */
.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 3rem;
    transform: translateY(-50%);
    z-index: 10;
}

.hero-main-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Category Pills */
.hero-pills {
    position: absolute;
    top: 2.5rem;
    right: 3rem;
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.hero-pill {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    color: #404040;
    padding: 0.5rem 1.25rem;
    border-radius: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s;
}

.hero-pill:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

/* Small Product Card (Bottom Left) */
.hero-product-card-small {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
    max-width: 320px;
}

.small-card-image {
    width: 70px;
    height: 70px;
    background-color: #f5f5f5;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.small-card-image img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.small-card-text h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #262626;
    margin-bottom: 0.25rem;
}

.small-card-text p {
    font-size: 0.75rem;
    color: #737373;
    line-height: 1.4;
}

/* Featured Product Card (Right) */
.hero-product-card-large {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    /* background-color: rgba(255, 255, 255, 0.95); */
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
    width: 280px;
}

.large-card-header {
    position: relative;
    margin-bottom: 1rem;
}

.card-label {
    font-size: 0.75rem;
    color: #737373;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-top: 0.5rem;
}

.card-arrow {
    position: absolute;
    /* top: 0; */
    right: 0;
    background-color: #262626;
    color: #ffffff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s;
}

.card-arrow:hover {
    background-color: #404040;
    transform: scale(1.1);
}

.large-card-image {
    width: 100%;
    height: 200px;
    /* background-color: #f5f5f5; */
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.large-card-image img {
    width: 200px;
    /* height: 140px; */
    object-fit: contain;
    border-radius: 1rem;
}

/* Featured Products */
.featured-products {
    padding: 4rem 0;
    background-color: #ffffff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background-color: #fafafa;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
}

.product-image {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #262626;
    margin-bottom: 0.5rem;
}

.product-description {
    font-size: 0.875rem;
    color: #737373;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #262626;
}

/* Press Section */
.press {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.press::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #a8d5e2 50%, transparent 100%);
}

.press-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem;
    border-radius: 2rem;
    background: linear-gradient(135deg, 
    #d8edf3,   /* أفتح من #a8d5e2 */
    #c5e3eb,   /* أفتح من #8ec5d6 */
    #ffdce1,   /* أفتح من #ffb6c1 */
    #eed2ee    /* أفتح من #dda0dd */
  );
    /* background: linear-gradient(135deg, rgba(168, 213, 226, 0.08) 0%, rgba(142, 197, 214, 0.12) 100%); */
    text-align: center;
    border: 2px solid rgba(168, 213, 226, 0.2);
    box-shadow: 0 10px 40px rgba(168, 213, 226, 0.15);
    backdrop-filter: blur(10px);
}

.press-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #a8d5e2, #8ec5d6, #ffb6c1, #dda0dd);
    border-radius: 2rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.press-wrapper:hover::before {
    opacity: 0.3;
}

.press-text {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #a8d5e2 0%, #8ec5d6 50%, #7ab5c6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Cairo', sans-serif;
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.press-text::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #a8d5e2, #8ec5d6);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(168, 213, 226, 0.5);
}

/* Press Badge - Modern Metallic Design */
.press-header-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.press-badge {
    background: linear-gradient(135deg, 
        #e8f4f8 0%, 
        #f0f8fb 50%, 
        #e8f4f8 100%
    );
    border: 2px solid rgba(168, 213, 226, 0.4);
    padding: 1.25rem 3.5rem;
}

.press-badge::before {
    background: linear-gradient(
        135deg,
        rgba(168, 213, 226, 0.3) 0%,
        transparent 50%,
        rgba(142, 197, 214, 0.2) 100%
    );
}

.press-badge .badge-text {
    font-size: 2rem;
    background: linear-gradient(135deg, 
        #2c5f7a 0%, 
        #4a8ba8 50%, 
        #2c5f7a 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.press-badge:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 45px rgba(168, 213, 226, 0.35),
        inset 0 2px 4px rgba(255, 255, 255, 0.9),
        inset 0 -2px 4px rgba(168, 213, 226, 0.25);
}

.press-logos {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.press-logo-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 1.5rem;
    padding: 2.5rem 3rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(168, 213, 226, 0.15), 0 2px 8px rgba(0, 0, 0, 0.05);
    min-width: 220px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(168, 213, 226, 0.1);
}

.press-logo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #a8d5e2, #8ec5d6, #ffb6c1);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.press-logo-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(168, 213, 226, 0.05), rgba(142, 197, 214, 0.08));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.press-logo-card:hover::before {
    transform: scaleX(1);
}

.press-logo-card:hover::after {
    opacity: 1;
}

.press-logo-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(168, 213, 226, 0.25), 0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(168, 213, 226, 0.3);
}

.press-logo-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #a8d5e2 0%, #8ec5d6 50%, #7ab5c6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(168, 213, 226, 0.4), inset 0 -2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.press-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.press-logo-card:hover .press-logo-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 12px 35px rgba(168, 213, 226, 0.5), inset 0 -2px 10px rgba(0, 0, 0, 0.15);
}

.press-logo-name {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #262626 0%, #404040 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
    margin: 0;
    font-family: 'Cairo', sans-serif;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.press-logo-card:hover .press-logo-name {
    letter-spacing: 0.05em;
}

.press-logo-desc {
    font-size: 1rem;
    color: #8ec5d6;
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.press-logo-card:hover .press-logo-desc {
    color: #7ab5c6;
    transform: scale(1.05);
}

/* All Products Section */
.all-products {
    padding: 5rem 0;
    background-color: #ffffff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #262626;
    text-align: center;
    margin-bottom: 3rem;
}

.products-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.add-to-cart-btn {
    background-color: #fafafa;
    color: #262626;
    border: 2px solid #e5e5e5;
    padding: 0.75rem 2rem;
    border-radius: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    width: 100%;
    transition: all 0.3s;
}

.add-to-cart-btn:hover {
    background-color: #262626;
    color: #fafafa;
    border-color: #262626;
}

/* Mission Section */
.mission {
    padding: 5rem 0;
    background-color: #fafafa;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
}

.mission-text {
    flex: 1;
}

.mission-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #262626;
    margin-bottom: 1.5rem;
}

.mission-description {
    font-size: 1.125rem;
    color: #404040;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.mission-btn {
    background-color: #262626;
    color: #fafafa;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.mission-btn:hover {
    background-color: #404040;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #262626;
    color: #fafafa;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-text {
    font-size: 0.875rem;
    color: #a3a3a3;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-link {
    color: #a3a3a3;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #fafafa;
}

.footer-bottom {
    border-top: 1px solid #404040;
    padding-top: 2rem;
    text-align: center;
    color: #737373;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .header {
        padding: 1rem 0;
    }

    .logo {
        font-size: 1.5rem;
    }

    .cart-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .hero {
        padding: 1rem;
    }

    .hero-wrapper {
        height: 500px;
    }

    .hero-main-title {
        font-size: 2rem;
        left: 2rem;
    }

    .hero-text-overlay {
        left: 2rem;
    }

    .hero-pills {
        top: 1.5rem;
        right: 2rem;
        flex-wrap: wrap;
    }

    .hero-product-card-small {
        bottom: 2rem;
        left: 2rem;
        max-width: 260px;
        padding: 1rem;
    }

    .hero-product-card-large {
        display: none !important;
    }

    .card-title {
        font-size: 1.25rem;
    }

    .large-card-image {
        height: 160px;
    }

    .large-card-image img {
        width: 100px;
        height: 100px;
    }

    .mission-content {
        flex-direction: row;
        gap: 2rem;
    }

    .mission-image {
        flex: 0.8;
    }

    .mission-text {
        flex: 1;
    }

    .mission-title {
        font-size: 2rem;
    }

    .mission-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Product grids - 2 columns on tablet */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .products-grid-large {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .product-card {
        padding: 1.5rem;
    }

    .product-image {
        height: 220px;
    }

    .product-name {
        font-size: 1.125rem;
    }

    .product-description {
        font-size: 0.8125rem;
    }

    .press-wrapper {
        padding: 3rem 2rem;
    }

    .press-text {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .press-badge {
        padding: 1rem 2.5rem;
    }
    
    .press-badge .badge-text {
        font-size: 1.75rem;
    }
    
    .press-header-badge {
        margin-bottom: 2.5rem;
    }

    .press-logos {
        gap: 2rem;
    }

    .press-logo-card {
        padding: 2rem 2.5rem;
        min-width: 200px;
    }
    
    .press-logo-icon {
        width: 90px;
        height: 90px;
    }
    
    .press-logo-name {
        font-size: 1.5rem;
    }
    
    .press-logo-desc {
        font-size: 0.9375rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .header {
        padding: 0.875rem 0;
    }

    .logo {
        font-size: 1.25rem;
    }

    .cart-btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
    }

    .hero {
        padding: 0.75rem;
    }

    .hero-wrapper {
        height: 400px;
        border-radius: 1.5rem;
    }

    .hero-main-title {
        font-size: 1.5rem;
        left: 1.5rem;
    }

    .hero-text-overlay {
        left: 1.5rem;
    }

    .hero-pills {
        top: 1rem;
        right: 1.5rem;
        gap: 0.5rem;
    }

    .hero-pill {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .hero-product-card-small {
        display: none !important;
    }

    .hero-product-card-large {
        display: none !important;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .mission {
        padding: 3rem 0;
    }

    .mission-content {
        flex-direction: row;
        gap: 1.5rem;
    }

    .mission-image {
        flex: 0.7;
    }

    .mission-text {
        flex: 1;
    }

    .mission-title {
        font-size: 1.5rem;
    }

    .mission-description {
        font-size: 0.875rem;
    }

    .mission-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    /* Product grids - 2 columns on mobile */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .products-grid-large {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-card {
        padding: 1rem;
    }

    .product-image {
        height: 180px;
        margin-bottom: 1rem;
    }

    .product-name {
        font-size: 0.9375rem;
        margin-bottom: 0.5rem;
    }

    .product-description {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .product-price {
        font-size: 1rem;
    }

    .add-to-cart-btn {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
        margin-top: 0.75rem;
    }

    .press-wrapper {
        padding: 2.5rem 1.5rem;
        border-radius: 1.5rem;
    }

    .press-text {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .press-text::after {
        width: 60px;
        height: 3px;
        bottom: -12px;
    }
    
    .press-badge {
        padding: 0.875rem 2rem;
    }
    
    .press-badge .badge-text {
        font-size: 1.5rem;
    }
    
    .press-header-badge {
        margin-bottom: 2rem;
    }

    .press-logos {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }

    .press-logo-card {
        padding: 2rem 2.5rem;
        min-width: 280px;
        width: 100%;
        max-width: 320px;
    }

    .press-logo-icon {
        width: 80px;
        height: 80px;
        font-size: 1.75rem;
    }

    .press-logo-name {
        font-size: 1.5rem;
    }

    .press-logo-desc {
        font-size: 0.9375rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-title {
        font-size: 1.25rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.8125rem;
    }
}
