/* Global Reset and Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid #ffd700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 20px;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo a:hover {
    color: #ffd700;
    transition: color 0.3s ease;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-list li {
    position: relative;
}

.nav-list a {
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    color: #ffd700;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ffd700;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    transform: scaleX(1);
}

.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    position: static;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-weight: 400;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f9f9f9;
    color: #000000;
}

.dropdown-menu a::after {
    display: none;
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.cart-icon {
    font-size: 24px;
}

.cart-count {
    background-color: #ffd700;
    color: #000000;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    position: absolute;
    top: -10px;
    right: -10px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #000000;
    transition: all 0.3s ease;
}

/* Hero */
.hero {
    margin-top: 80px;
    height: 45vh;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #000000 !important;
    background-image: none !important;
}

.slide-content {
    text-align: center;
    color: #ffffff;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.slide-content h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: #ffd700;
    color: #000000;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    background-color: #ffed4a;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.carousel-button {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    color: #000000;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.carousel-button:hover {
    background-color: #ffd700;
    transform: translateY(-50%) scale(1.1);
}

.carousel-button.prev {
    left: 20px;
}

.carousel-button.next {
    right: 20px;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.featured-products h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.product-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-card h3 {
    padding: 20px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.price {
    color: #ff6b35;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.add-to-cart {
    display: block;
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    padding: 15px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.add-to-cart:hover {
    background-color: #ffd700;
    color: #000000;
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background-color: #000000;
    color: #ffffff;
}

.newsletter h2,
.newsletter p {
    text-align: center;
    margin-bottom: 20px;
}

.newsletter h2 {
    font-size: 36px;
    font-weight: 700;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: 2px solid #ffffff;
    background-color: transparent;
    color: #ffffff;
    font-size: 16px;
}

.newsletter-form input::placeholder {
    color: #cccccc;
}

.newsletter-form button {
    background-color: #ffd700;
    color: #000000;
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #ffd700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: transparent;
    color: #ffd700;
}

/* Footer */
.footer {
    background-color: #f9f9f9;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.footer-section p {
    margin-bottom: 10px;
    color: #666666;
}

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

.footer-section a:hover {
    color: #ffd700;
}

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

.social-links a {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid #dddddd;
    padding-top: 20px;
    text-align: center;
    color: #666666;
    font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header .container {
        padding: 7px 15px;
    }

    .logo a {
        font-size: 20px;
    }

    .nav-list {
        position: fixed;
        top: 60px;
        left: -250px;
        width: 250px;
        height: calc(100vh - 60px);
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-list.open {
        left: 0;
    }

    .nav-list.open {
        left: 0;
    }

    .dropdown {
        width: 100%;
        text-align: left;
    }

    .dropdown>a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    .dropdown-menu {
        display: none;
        flex-direction: column;
        background-color: #f9f9f9;
        border-radius: 8px;
        padding: 10px;
        margin-top: 10px;
        gap: 5px;
        width: 100%;
    }

    .dropdown-menu.open {
        display: flex;
    }

    .dropdown-menu a {
        padding: 12px 15px !important;
        font-weight: 400;
        border-radius: 5px;
        width: 100%;
        box-sizing: border-box;
    }

    .dropdown-menu a:hover {
        background-color: #e0e0e0 !important;
        color: #000000 !important;
    }

    .dropdown-arrow {
        transition: transform 0.3s ease;
        font-size: 14px;
    }

    .dropdown-menu.open+.dropdown-arrow {
        transform: rotate(180deg);
    }

    .hamburger {
        display: flex;
    }

    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .cart-link {
        padding: 8px;
        background-color: #ffd700;
        border-radius: 8px;
    }

    .hero {
        margin-top: 60px;
        height: 35vh;
        min-height: 250px;
    }

    .slide-content {
        padding: 20px;
        text-align: center;
    }

    .slide-content h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .slide-content p {
        font-size: 16px;
        margin-bottom: 25px;
        line-height: 1.5;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .featured-products {
        padding: 60px 0;
    }

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

    .product-card {
        background-color: #ffffff;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .product-image {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }

    .product-card h3 {
        padding: 15px 15px 5px;
        font-size: 18px;
        font-weight: 600;
    }

    .price {
        font-size: 16px;
        padding: 0 15px;
        margin-bottom: 15px;
    }

    .add-to-cart {
        margin: 0 15px 15px;
        width: calc(100% - 30px);
    }

    .newsletter {
        padding: 60px 0;
    }

    .newsletter h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        margin-bottom: 10px;
        padding: 12px;
        font-size: 16px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section h3 {
        margin-bottom: 15px;
        font-size: 16px;
    }

    .social-links {
        justify-content: center;
    }
}

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

    .header .container {
        padding: 5px 10px;
    }

    .logo a {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .nav-list {
        top: 60px;
        padding: 30px 15px;
        gap: 15px;
    }

    .dropdown>a {
        padding: 12px 0;
        font-size: 16px;
    }

    .dropdown-menu a {
        padding: 10px 12px !important;
        font-size: 14px;
    }

    .cart-link {
        padding: 6px;
    }

    .cart-count {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }

    .hero {
        margin-top: 60px;
        height: 30vh;
        min-height: 200px;
    }

    .slide-content {
        padding: 15px;
    }

    .slide-content h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .slide-content p {
        font-size: 14px;
        margin-bottom: 20px;
        max-width: none;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 13px;
        letter-spacing: 0.5px;
    }

    .featured-products {
        padding: 40px 0;
    }

    .featured-products h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-card {
        border-radius: 10px;
    }

    .product-image {
        height: 200px;
    }

    .product-card h3 {
        padding: 12px 15px 5px;
        font-size: 16px;
    }

    .price {
        font-size: 14px;
        padding: 0 15px;
        margin-bottom: 12px;
    }

    .add-to-cart {
        margin: 0 15px 15px;
        padding: 12px 0;
        font-size: 14px;
    }

    .newsletter {
        padding: 40px 0;
    }

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

    .newsletter-form input,
    .newsletter-form button {
        padding: 12px;
        font-size: 14px;
    }

    .footer {
        padding: 30px 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-section h3 {
        margin-bottom: 12px;
        font-size: 15px;
    }

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

/* Page Specific Styles */
.page-header {
    margin-top: 80px;
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-header p {
    font-size: 24px;
    color: #666666;
    font-weight: 300;
}

/* About Page Styles */
.about-hero {
    margin-top: 80px;
    height: 50vh;
    min-height: 300px;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 24px;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.story {
    padding: 100px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 700;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
    color: #666666;
}

.story-image {
    text-align: center;
}

.story-img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission,
.why-choose-us,
.team {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.mission-content,
.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-text h2,
.team h2,
.why-choose-us h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.mission-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 30px;
}

.mission-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mission-point {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.mission-point h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.mission-point p {
    color: #666666;
    font-size: 16px;
}

.mission-image {
    text-align: center;
}

.mission-img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.reason-card {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
}

.reason-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.reason-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.reason-card p {
    color: #666666;
    line-height: 1.6;
}

.team h2 {
    margin-bottom: 50px;
}

.team-member {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-photo {
    height: 250px;
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    padding: 20px;
    font-size: 20px;
    font-weight: 600;
}

.team-member p:first-of-type {
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 10px;
}

.team-member p:last-of-type {
    padding: 0 20px 20px;
    color: #666666;
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-bottom: 20px;
}

.social-links a {
    font-size: 20px;
    color: #666666;
    transition: color 0.3s ease;
}

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

.cta-section {
    padding: 100px 0;
    background-color: #000000;
    color: #ffffff;
    text-align: center;
}

/* Contact Page Styles */
.contact-hero {
    margin-top: 80px;
    height: 40vh;
    min-height: 200px;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 20px;
    font-weight: 300;
}

.contact-ways {
    padding: 80px 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.contact-method {
    background-color: #f9f9f9;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.contact-method h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-method p {
    color: #666666;
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-method .cta-button.small {
    padding: 12px 24px;
    font-size: 14px;
    margin-top: 15px;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.form-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
}

.form-content p {
    font-size: 18px;
    color: #666666;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
}

.form-sidebar .faq-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.form-sidebar .faq-item {
    margin-bottom: 20px;
}

.form-sidebar .faq-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-sidebar .faq-item p {
    color: #666666;
    font-size: 14px;
    line-height: 1.5;
}

.faq-full {
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.faq-column .faq-item-expanded {
    margin-bottom: 40px;
}

.faq-column h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-column p {
    color: #666666;
    line-height: 1.7;
}

.office-info {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.office-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.office-details h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.office-details p:first-of-type {
    font-size: 18px;
    color: #666666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.office-address,
.office-hours {
    margin-bottom: 30px;
}

.office-address h3,
.office-hours h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.office-address p,
.office-hours p {
    margin-bottom: 5px;
    color: #666666;
}

.map-placeholder {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}

.social-connect {
    padding: 100px 0;
    background-color: #000000;
    color: #ffffff;
}

.social-connect h2,
.social-connect p {
    text-align: center;
    margin-bottom: 20px;
}

.social-connect h2 {
    font-size: 36px;
    font-weight: 700;
}

.social-platforms {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.social-platform {
    background-color: #ffffff;
    color: #000000;
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    min-width: 150px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-platform:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.social-platform.twitter {
    border-left: 4px solid #1da1f2;
}

.social-platform.instagram {
    border-left: 4px solid #c13584;
}

.social-platform.tiktok {
    border-left: 4px solid #000000;
}

.social-platform.discord {
    border-left: 4px solid #5865f2;
}

.social-icon {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
}

.social-handle {
    font-weight: 600;
    margin-bottom: 5px;
}

.social-desc {
    font-size: 14px;
    color: #666666;
}

/* Cart Page Styles */
.cart-hero {
    margin-top: 80px;
    height: 30vh;
    min-height: 150px;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}

.cart-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.cart-hero p {
    font-size: 20px;
    font-weight: 300;
}

.cart-content {
    padding: 80px 0;
}

.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.cart-items-section {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 2fr 1fr;
    gap: 30px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
    align-items: center;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    overflow: hidden;
}

.cart-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-price {
    color: #666666;
    font-size: 14px;
    margin-bottom: 10px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    background-color: #f0f0f0;
    color: #000000;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.quantity-btn:hover {
    background-color: #ffd700;
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 5px;
    font-weight: 600;
}

.cart-item-total {
    text-align: right;
}

.item-total {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.remove-item {
    background: none;
    color: #ff6b35;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.remove-item:hover {
    color: #ff4444;
}

.remove-icon {
    font-size: 20px;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
}

.empty-cart h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.empty-cart p {
    color: #666666;
    margin-bottom: 30px;
    font-size: 18px;
}

.cart-summary-section {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.cart-summary h2 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 16px;
}

.summary-row.total {
    border-top: 2px solid #e0e0e0;
    padding-top: 20px;
    margin-top: 20px;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}

.checkout-actions {
    margin-top: 30px;
}

.checkout-btn {
    width: 100%;
    margin-bottom: 15px;
}

.continue-shopping-btn {
    width: 100%;
    background-color: transparent;
    color: #666666;
    border: 2px solid #e0e0e0;
    padding: 12px 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.continue-shopping-btn:hover {
    background-color: #f9f9f9;
    border-color: #cccccc;
}

.cart-benefits {
    margin-top: 30px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.benefit-icon {
    font-size: 20px;
}

.benefit-text {
    font-size: 14px;
    color: #666666;
}

.promo-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.promo-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.promo-input-group {
    display: flex;
    margin-bottom: 15px;
}

.promo-input-group input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
}

.promo-apply-btn {
    background-color: #000000;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.promo-apply-btn:hover {
    background-color: #333333;
}

.promo-note {
    font-size: 12px;
    color: #666666;
    font-style: italic;
}

.recently-viewed {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.recently-viewed h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 28px;
    font-weight: 700;
}

.recently-viewed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #ffffff;
    margin: 10% auto;
    padding: 0;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalOpen 0.3s ease-out;
}

.modal-header {
    background-color: #f9f9f9;
    padding: 20px 30px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.close-modal {
    font-size: 28px;
    cursor: pointer;
    color: #666666;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #ff6b35;
}

.checkout-placeholder {
    text-align: center;
    padding: 40px 30px;
}

.checkout-placeholder p {
    margin-bottom: 20px;
    color: #666666;
}

.checkout-note {
    font-size: 12px;
    color: #999999;
    font-style: italic;
}

@keyframes modalOpen {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Badge Styles */
.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ff6b35;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.product-card {
    position: relative;
}

.product-card.new .badge {
    background-color: #4CAF50;
}

.product-card.featured .badge {
    background-color: #ffd700;
    color: #000000;
}

/* Filters */
.filters {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.filter-group label {
    font-weight: 600;
    font-size: 14px;
}

.filter-group select {
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background-color: #ffffff;
    font-size: 14px;
    cursor: pointer;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 50px;
}

/* Responsive Page Styles */
@media (max-width: 768px) {

    .about-hero,
    .contact-hero,
    .cart-hero {
        height: 30vh;
        min-height: 150px;
    }

    .about-hero h1,
    .contact-hero h1,
    .cart-hero h1 {
        font-size: 32px;
    }

    .about-hero p,
    .contact-hero p,
    .cart-hero p {
        font-size: 16px;
    }

    .story-content,
    .mission-content,
    .team-grid,
    .office-content,
    .contact-form-container,
    .cart-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-points {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-methods,
    .social-platforms {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .cart-item {
        grid-template-columns: 60px 2fr;
        gap: 15px;
    }

    .cart-item-details {
        grid-column: span 2;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #e0e0e0;
    }

    .cart-item-quantity {
        order: 1;
        margin: 0;
    }

    .cart-item-total {
        order: 2;
        text-align: right;
        margin: 0;
        margin-top: 10px;
    }

    .cta-button.small {
        width: 100%;
    }

    .cta-section,
    .story,
    .mission,
    .why-choose-us,
    .team,
    .faq-full,
    .office-info,
    .social-connect,
    .contact-ways,
    .contact-form-section,
    .cart-content,
    .recently-viewed {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .page-header {
        margin-top: 60px;
        padding: 40px 0;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .page-header p {
        font-size: 18px;
    }

    .story-content,
    .mission-content,
    .team-grid,
    .office-content,
    .contact-form-container,
    .cart-layout {
        gap: 30px;
    }

    .about-hero h1,
    .contact-hero h1,
    .cart-hero h1 {
        font-size: 28px;
    }

    .about-hero p,
    .contact-hero p,
    .cart-hero p {
        font-size: 14px;
    }

    .story-text h2,
    .mission-text h2,
    .contact-form h2,
    .office-details h2 {
        font-size: 28px;
    }

    .reasons-grid,
    .recently-viewed-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .social-platforms {
        gap: 20px;
    }

    .social-platform {
        min-width: auto;
        flex: 1;
    }

    .filters {
        flex-direction: column;
        gap: 15px;
    }
}