@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap');

:root {
    --primary-color: #6a1b9a;
    --secondary-color: #f7a228;
    --text-color: #333;
    --light-bg-color: #f9f9f9;
    --gray-light: #ccc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #fff;
    border-bottom: none; /* <-- CHANGE THIS LINE */
    box-shadow: none; /* <-- CHANGE THIS LINE */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo h2 {
    font-family: 'Dancing Script', cursive;
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
}

.header-nav {
    display: flex;
    gap: 1.5rem;
}

.header-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-nav a:hover {
    color: var(--primary-color);
}

.category-dropdown {
    position: relative;
}

.category-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid var(--gray-light);
    border-top: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    min-width: 150px;
    padding: 0.5rem 0;
}

.dropdown-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-content li a {
    padding: 0.75rem 1rem;
    display: block;
    white-space: nowrap;
}

.dropdown-content li a:hover {
    background-color: var(--light-bg-color);
}

.header-items {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-light);
    border-radius: 20px;
    padding: 0.25rem 1rem;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(106, 27, 154, 0.2);
}

.search-box input {
    border: none;
    outline: none;
    padding: 0.5rem;
    width: 150px;
    background: transparent;
}

.search-box .fa-magnifying-glass {
    color: #888;
}

.user-icon-link, .cart-icon-link {
    font-size: 1.2rem;
    color: var(--text-color);
    position: relative;
    text-decoration: none;
}

.cart-icon-link .cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.7rem;
    font-weight: bold;
}

main {
    padding: 2rem 5%;
}

.main-hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero-content h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.peculiar-btn-1, .peculiar-btn-2 {
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.peculiar-btn-1 {
    background-color: var(--primary-color);
    color: #fff;
}

.peculiar-btn-2 {
    background-color: #fff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.peculiar-btn-1:hover, .peculiar-btn-2:hover {
    transform: translateY(-2px);
}

.hero-image-wrapper {
    flex: 1;
    text-align: right;
    min-width: 300px;
}

.peculiar-hero-image {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.categories-section {
    padding: 2rem 0;
    text-align: center;
}

.categories-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.category-item {
    text-align: center;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.category-item img, .category-item video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.category-item strong {
    display: block;
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.8);
    padding: 0.25rem 1rem;
    border-radius: 5px;
    color: var(--primary-color);
    font-weight: 600;
}

.products-section {
    padding: 2rem 0;
    text-align: center;
}

.products-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.products-section p {
    color: #666;
    margin-bottom: 2rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.product-card .image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card .tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-card .heart {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2rem;
    color: #fff;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: color 0.3s ease;
}

.product-card .heart i {
    pointer-events: none;
}

.product-card .heart .fa-solid {
    color: red;
}

.product-card .info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card .info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-card .info .description {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-card .info .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.add-to-cart-btn {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.add-to-cart-btn:hover {
    background-color: #5c1682;
}

.divider {
    border-top: 1px solid var(--gray-light);
    margin: 2rem 5%;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 3rem 5%;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-column p {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    padding: 0.5rem;
    border: none;
    border-radius: 5px;
}

.newsletter-form button {
    padding: 0.5rem 1rem;
    background-color: var(--secondary-color);
    color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #e5911d;
}

.social-links a {
    color: #fff;
    font-size: 1.2rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.8rem;
    color: #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #ccc;
    text-decoration: none;
    margin-left: 1rem;
}

/* General button styling */
button, input[type="submit"] {
    cursor: pointer;
    font-weight: 600;
}

/* Utility classes */
.active {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 5px rgba(106, 27, 154, 0.5);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
        padding: 1rem 3%;
        gap: 1rem;
    }
    
    .header-left {
        width: 100%;
        justify-content: space-between;
    }

    .header-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--gray-light);
    }

    .header-nav.active {
        display: flex;
    }

    .header-items {
        width: 100%;
        justify-content: space-between;
    }

    .search-box {
        width: 100%;
    }

    .mobile-menu-toggle {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .category-dropdown .dropdown-content {
        position: static;
        width: 100%;
        border: none;
        box-shadow: none;
    }

    .main-hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-wrapper {
        text-align: center;
    }

    .peculiar-hero-image {
        max-width: 80%;
    }
}

@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }

    .category-dropdown:hover .dropdown-content {
        display: block;
    }
}
/* gift-package section */
.gift-package-main {
    padding: 2rem 5%;
}

.gift-package-main .hero-section {
    background: url('assets/images/beautiful gift package.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.gift-package-main .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.gift-package-main .hero-content {
    z-index: 2;
}

.gift-package-main .hero-content h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gift-package-main .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Why Choose Us Section */
.why-choose-us-section {
    text-align: center;
    margin-bottom: 3rem;
}

.why-choose-us-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: var(--light-bg-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: #666;
}

/* about-us section */
.about-us-main {
    padding: 2rem 5%;
}

/* About Hero Section */
.about-hero {
    background: url('assets/images/happy team-2.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.about-hero h1, .about-hero p {
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-hero h1 {
    font-size: 3.5rem;
    font-family: 'Dancing Script', cursive;
    margin-bottom: 0.5rem;
}

.about-hero p {
    font-size: 1.2rem;
}

/* Mission Section */
.mission-section {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.mission-content {
    flex: 1;
}

.mission-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mission-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.image-container {
    flex: 1;
    text-align: center;
}

.mission-image {
    max-width: 40%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Team Section */
.team-section {
    text-align: center;
}

.team-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    background: var(--light-bg-color);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
    margin-bottom: 1rem;
}

.team-member h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.team-member p {
    color: #777;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .mission-section {
        flex-direction: column;
        gap: 2rem;
    }
}

/* category section */
.category-main {
    padding: 2rem 5%;
}

.category-hero {
    background: url('assets/images/beautiful ankara fabric.jpg') no-repeat center center/cover;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.category-hero h1, .category-hero p {
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.category-hero h1 {
    font-size: 2.5rem;
    font-family: 'Dancing Script', cursive;
    margin-bottom: 0.5rem;
}

.category-hero p {
    font-size: 1.1rem;
}

.category-filter-section {
    text-align: center;
    margin-bottom: 2rem;
}

.category-filter-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.filter-btn {
    text-decoration: none;
    color: var(--text-color);
    background-color: var(--light-bg-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.filter-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 6px rgba(106, 27, 154, 0.2);
}

/* login section */
.login-main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 150px);
    background-color: var(--light-bg-color);
    padding: 2rem;
}

.login-container {
    width: 100%;
    max-width: 450px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.form-section {
    padding: 3rem 2rem;
    transition: transform 0.6s ease-in-out;
}

.login-form-section {
    transform: translateX(0%);
}

.signup-form-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(100%);
}

.login-container.active .login-form-section {
    transform: translateX(-100%);
}

.login-container.active .signup-form-section {
    transform: translateX(0%);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #666;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-options {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}

.form-options a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #5c1682;
}

.form-switch {
    text-align: center;
    margin-top: 1.5rem;
}

.form-switch a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 500px) {
    .login-main {
        padding: 1rem;
    }
    .login-container {
        border-radius: 0;
    }
}

/* cart section */
.cart-main {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 5%;
}

.cart-content {
    flex: 2;
    min-width: 60%;
}

.cart-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.empty-cart-message {
    text-align: center;
    color: #888;
    font-size: 1.2rem;
    padding: 3rem;
    border: 1px dashed #ddd;
    border-radius: 8px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid #eee;
    padding: 1rem;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.item-details {
    flex-grow: 1;
}

.item-details h4 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.item-price {
    font-weight: bold;
    color: var(--primary-color);
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background-color: var(--light-bg-color);
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.quantity-btn:hover {
    background-color: #eee;
}

.quantity-input {
    width: 40px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0.25rem;
}

.remove-item {
    background: none;
    border: none;
    color: #999;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.remove-item:hover {
    color: #d9534f;
}

/* Customer Details Section */
.customer-details-section {
    flex: 2;
    min-width: 60%;
    background-color: #f7f7f7;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.customer-details-section h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

#customer-details-form .form-group {
    margin-bottom: 1.5rem;
}

#customer-details-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

#customer-details-form input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

#customer-details-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Cart Summary Section */
.cart-summary {
    flex: 1;
    min-width: 300px;
    height: fit-content;
    background-color: var(--light-bg-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.cart-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

/* Promo Code Section */
.promo-code-section {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.promo-code-section input {
    flex-grow: 1;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.promo-code-section button {
    padding: 0.75rem 1.5rem;
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.promo-code-section button:hover {
    background-color: #3f187a;
}

.promo-message {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-align: right;
    font-style: italic;
}

.promo-message.success {
    color: #28a745;
}

.promo-message.error {
    color: #dc3545;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
}

.summary-item.total {
    font-weight: bold;
    font-size: 1.2rem;
    border-top: 1px solid #ddd;
    padding-top: 1rem;
    margin-top: 1rem;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 2rem;
}

.checkout-btn:hover {
    background-color: #3f187a;
}

.checkout-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .cart-main {
        flex-direction: column;
    }

    .cart-content, .cart-summary, .customer-details-section {
        min-width: 100%;
    }
}


