* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    height: 60px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #ff6b6b;
}

.basket-btn {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1.2rem;
    position: relative;
    transition: transform 0.3s;
}

.cart-icon {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

.basket-btn:hover {
    transform: scale(1.05);
}

#basket-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #333;
    color: white;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.hero {
    padding: 150px 0 100px;
    text-align: center;
    background: url('assets/bg.png') center/cover no-repeat;
    animation: fadeInUp 1s ease-out;
    position: relative;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #333;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    font-weight: 600;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.products {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 0.8s ease-out;
    animation-fill-mode: both;
    position: relative;
    min-height: 500px;
}

.product-card:nth-child(odd) {
    animation-delay: 0.2s;
}

.product-card:nth-child(even) {
    animation-delay: 0.4s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6b6b;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 1;
}

.special-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(255, 105, 180, 0.3);
}

.discount-banner {
    background: #ff6b6b;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}

.product-card .card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px 20px 80px;
}

.product-card h3 {
    padding: 0 0 10px;
    font-size: 1.5rem;
    color: #333;
    flex-shrink: 0;
}

.product-card p {
    color: #666;
    flex: 1;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    flex-shrink: 0;
}

.options label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.original-price {
    text-decoration: line-through;
    color: red;
    font-size: 0.9em;
}

.discounted-price {
    color: black;
    font-size: 1em;
}

.add-to-basket {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    border: none;
    border-radius: 0 0 20px 20px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s;
}

.add-to-basket:hover {
    background: linear-gradient(45deg, #4ecdc4, #ff6b6b);
}

.coming-soon-btn {
    background: #cccccc !important;
    color: #666 !important;
    cursor: not-allowed !important;
    opacity: 0.6;
}

.coming-soon-btn:hover {
    background: #cccccc !important;
    transform: none !important;
    box-shadow: none !important;
}

.make-your-own .add-to-basket {
    position: static;
    width: auto;
    margin: 0 auto;
    display: block;
    border-radius: 20px;
}

.make-your-own {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.make-your-own h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.make-your-own p {
    text-align: center;
    margin-bottom: 30px;
}

.pouch-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.pouch-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    background: white;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.pouch-options label:hover {
    transform: translateY(-5px);
}

.sweet-categories {
    max-width: 800px;
    margin: 0 auto;
}

.sweet-categories h3 {
    text-align: center;
    margin-bottom: 20px;
}

.category-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.sweet-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.sweet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.sweet-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 5px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    background: #ff6b6b;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.qty-btn:hover {
    background: #e55a5a;
}

.quantity-control input[type="number"] {
    width: 40px;
    text-align: center;
    border: 2px solid #ff6b6b;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    background: white;
}

#selection-status {
    margin-top: 20px;
    font-weight: bold;
    text-align: center;
    color: #ff6b6b;
}

.about, .contact {
    padding: 100px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
}

.about h2, .contact h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.contact-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    text-decoration: none;
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s;
}

.contact-btn:hover {
    background: rgba(255, 107, 107, 0.2);
    transform: translateY(-2px);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.3s ease-out;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.product-modal-content {
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
}


.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #333;
}

#basket-items {
    margin: 20px 0;
}

#basket-total {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 20px 0;
    text-align: center;
    color: #ff6b6b;
}

#checkout-btn {
    display: block;
    margin: 20px auto 0;
    padding: 12px 30px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

#checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out;
}

#loading.fade-out {
    opacity: 0;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #ff6b6b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.basket-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.remove-btn {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

footer {
    background: #333;
    color: white;
    padding: 20px 0;
}

.footer-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Mobile footer styling remains the same */
@media (max-width: 768px) {
    .footer-content {
        padding: 0 15px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 1000;
}

.bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 5px;
    transition: color 0.3s;
}

.bottom-nav a:hover {
    color: #ff6b6b;
}

.bottom-nav i {
    font-size: 1.5rem;
    margin-bottom: 2px;
}

.bottom-nav span {
    font-size: 0.7rem;
    line-height: 1;
}

.basket-btn-mobile {
    position: relative;
    background: #ff6b6b;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    aspect-ratio: 1;
}

.basket-btn-mobile:hover {
    transform: scale(1.1);
}

.basket-btn-mobile i {
    font-size: 1.8rem;
    margin-bottom: 0;
}

#basket-count-mobile {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #333;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

#admin-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s;
    box-shadow: 0 6px 12px rgba(255, 107, 107, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

#admin-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(255, 107, 107, 0.4);
}

#admin-icon i {
    font-size: 24px;
}

.admin-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.admin-section:last-child {
    border-bottom: none;
}

.admin-section h3 {
    font-size: 1.1rem;
    color: #ff6b6b;
    margin-bottom: 10px;
    font-weight: 600;
}

.admin-btn {
    display: block;
    width: 100%;
    margin-bottom: 8px;
    padding: 10px 15px;
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}

.admin-btn:hover {
    background: rgba(255, 107, 107, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 107, 107, 0.2);
}

.admin-btn:disabled {
    background: #f5f5f5;
    color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Success and Cancel Pages */
.success-message, .cancel-message {
    padding: 100px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.success-content, .cancel-content {
    text-align: center;
    max-width: 600px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.success-icon {
    font-size: 5rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.cancel-icon {
    font-size: 5rem;
    color: #f44336;
    margin-bottom: 20px;
}

.success-content h1, .cancel-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.success-text, .cancel-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

.order-details, .cancel-reasons {
    text-align: left;
    margin: 30px 0;
    padding: 20px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 10px;
    border-left: 4px solid #4CAF50;
}

.cancel-reasons {
    background: rgba(244, 67, 54, 0.1);
    border-left-color: #f44336;
}

.order-details h2, .cancel-reasons h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.order-details ul, .cancel-reasons ul {
    list-style: none;
    padding: 0;
}

.order-details li, .cancel-reasons li {
    padding: 5px 0;
    color: #555;
}

.success-actions, .cancel-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.primary-btn {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    text-decoration: none;
}

.secondary-btn {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.3);
    text-decoration: none;
}

.primary-btn:hover, .secondary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-share {
    margin-top: 30px;
}

.social-share p {
    margin-bottom: 15px;
    color: #666;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-btn {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #ff6b6b;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-btn:hover {
    transform: scale(1.1);
}

.promo-offer {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 10px;
}

/* Brand Kit Page Styles */
.brand-hero {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #ffeaa7 0%, #ff6b6b 100%);
    color: white;
}

.brand-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.brand-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.brand-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.9);
}

.brand-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.overview-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.overview-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff6b6b;
}

.logo-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.logo-showcase {
    text-align: center;
}

.main-logo {
    max-width: 300px;
    height: auto;
}

.logo-caption {
    margin-top: 20px;
    color: #666;
    font-style: italic;
}

.logo-variations ul {
    list-style: none;
    padding: 0;
}

.logo-variations li {
    margin-bottom: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.colors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.color-card {
    text-align: center;
}

.color-swatch {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.color-card h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.color-hex {
    font-family: monospace;
    font-size: 1.1rem;
    color: #ff6b6b;
    margin-bottom: 10px;
}

.color-usage {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.typography-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.font-showcase h3 {
    margin-bottom: 20px;
    color: #333;
}

.font-weights {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.font-weight {
    margin-bottom: 15px;
    padding: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.font-weight:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.typography-guidelines h3 {
    margin-bottom: 20px;
    color: #333;
}

.guideline-item {
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.guideline-item h4 {
    color: #ff6b6b;
    margin-bottom: 10px;
}

.voice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.voice-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.voice-card h3 {
    color: #ff6b6b;
    margin-bottom: 15px;
}

.voice-card ul {
    list-style: none;
    padding: 0;
}

.voice-card li {
    margin-bottom: 8px;
    color: #333;
}

.photography-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.photo-guidelines {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.photo-guidelines h3 {
    color: #ff6b6b;
    margin-bottom: 20px;
    text-align: center;
}

.photo-guidelines ul {
    list-style: none;
    padding: 0;
}

.photo-guidelines li {
    margin-bottom: 12px;
    color: #333;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.example-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.example-card h4 {
    color: #ff6b6b;
    margin-bottom: 15px;
}

.example-content {
    background: rgba(255, 235, 167, 0.3);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.example-content small {
    color: #666;
    font-style: italic;
}

.assets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.asset-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.asset-card h4 {
    color: #ff6b6b;
    margin-bottom: 15px;
}

.asset-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.asset-card li {
    margin-bottom: 8px;
    color: #333;
}

/* Responsive Design for Brand Kit */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    header .container {
        padding: 15px;
    }

    .logo {
        font-size: 1.5rem;
    }

    nav {
        display: none;
    }

    .bottom-nav {
        display: flex;
    }

    .basket-btn {
        display: none;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .products {
        padding: 80px 0;
    }

    .products h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        height: auto;
        min-height: 450px;
    }

    .options {
        gap: 8px;
    }

    .options label {
        font-size: 14px;
        line-height: 1.3;
        padding: 8px 0;
    }

    .sweet-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .sweet-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .quantity-control {
        justify-content: center;
    }

    .make-your-own h2 {
        font-size: 2rem;
    }

    .pouch-options {
        flex-direction: column;
        gap: 15px;
    }

    .pouch-options label {
        justify-content: center;
        padding: 12px;
    }

    .about, .contact {
        padding: 60px 0;
    }

    .about h2, .contact h2 {
        font-size: 2rem;
    }

    .modal-content {
        width: 95%;
        padding: 15px;
    }

    .product-modal-content {
        max-height: 70vh;
    }

    .success-content, .cancel-content {
        padding: 20px;
        margin: 20px;
    }

    .success-actions, .cancel-actions {
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Brand Kit Mobile Styles */
    .brand-hero {
        padding: 100px 0 60px;
    }

    .brand-hero h1 {
        font-size: 2.5rem;
    }

    .brand-hero p {
        font-size: 1.1rem;
    }

    .brand-section {
        padding: 60px 0;
    }

    .brand-section h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .overview-grid, .colors-grid, .voice-grid, .examples-grid, .assets-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .logo-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .typography-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .photography-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .main-logo {
        max-width: 200px;
    }
}
