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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #5a4a6a;
    background-color: #fef7f7;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 182, 193, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 192, 203, 0.3);
    box-shadow: 0 4px 20px rgba(255, 182, 193, 0.3);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.logo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    border-color: rgba(212, 175, 55, 0.6);
}

.nav-logo h2 {
    color: #8b4a6b;
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(139, 74, 107, 0.2);
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #8b4a6b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    text-shadow: 0 1px 2px rgba(139, 74, 107, 0.1);
}

.nav-link:hover {
    background: rgba(255, 192, 203, 0.3);
    color: #d85a7f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 192, 203, 0.3);
}

.admin-link {
    background: rgba(255, 192, 203, 0.3);
    border: 2px solid rgba(216, 90, 127, 0.4);
    color: #d85a7f !important;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(255, 192, 203, 0.2);
}

.admin-link:hover {
    background: rgba(216, 90, 127, 0.2);
    color: #8b4a6b !important;
    box-shadow: 0 6px 20px rgba(255, 192, 203, 0.4);
    transform: translateY(-2px);
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #8b4a6b;
    margin: 3px 0;
    transition: 0.3s;
    box-shadow: 0 1px 3px rgba(139, 74, 107, 0.2);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffb6c1, #ffc0cb, #ffd1dc, #ffe4e1);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #8b4a6b;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-tagline {
    margin-bottom: 25px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-tagline h2 {
    font-size: 2.2rem;
    color: #fff;
    font-weight: 300;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    margin: 0;
    letter-spacing: 1px;
}

.hero-attributes {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.attribute-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.attribute-item:hover {
    transform: translateY(-5px);
}

.attribute-item i {
    font-size: 2rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.attribute-item span {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #d85a7f;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(216, 90, 127, 0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
    border: 2px solid #d85a7f;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(216, 90, 127, 0.4);
    background-color: #d85a7f;
    color: white;
}

.hero-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-logo-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-logo-image:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #d85a7f;
    margin-bottom: 50px;
    position: relative;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(216, 90, 127, 0.2);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #ffb6c1, #d85a7f);
    border-radius: 2px;
}

/* Store Policies Section */
.policies {
    background: linear-gradient(135deg, #fff0f5, #ffe4e1);
    padding: 80px 0;
}

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

.policy-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 182, 193, 0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.policy-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 182, 193, 0.3);
    border-color: #ffb6c1;
}

.policy-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffb6c1, #d85a7f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(255, 182, 193, 0.3);
}

.policy-icon i {
    font-size: 2rem;
    color: white;
}

.policy-item h3 {
    color: #8b4a6b;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(139, 74, 107, 0.1);
}

.policy-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Products Section */
.products {
    background-color: #fff;
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: #fff;
    border: 2px solid #ffb6c1;
    color: #d85a7f;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #ffb6c1, #d85a7f);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.4);
}

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

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e9ecef;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 182, 193, 0.3);
    border-color: #ffb6c1;
}

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #fff0f5, #ffe4e1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d85a7f;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

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

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #8b4a6b;
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-price {
    font-size: 1.4rem;
    color: #d85a7f;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.product-category {
    display: inline-block;
    background: linear-gradient(135deg, #ffb6c1, #d85a7f);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #fff0f5, #ffe4e1);
}

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

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ffb6c1, #d85a7f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    box-shadow: 0 10px 30px rgba(255, 182, 193, 0.4);
}

/* Contact Section */
.contact {
    background-color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: #555;
}

.contact-item i {
    color: #d85a7f;
    font-size: 1.5rem;
    width: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d85a7f;
}

.contact-form button {
    background: linear-gradient(135deg, #ffb6c1, #d85a7f);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.4);
}

/* 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);
}

/* Image Modal Styles */
.image-modal-content {
    position: relative;
    background-color: transparent;
    margin: 2% auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease-out;
}

.image-modal-content img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    background: white;
    border-radius: 15px 15px 0 0;
}

.image-modal-info {
    background: linear-gradient(135deg, #f8b5d1, #e8a4c8);
    padding: 20px;
    text-align: center;
    border-radius: 0 0 15px 15px;
}

.image-modal-info h3 {
    color: #8b4a6b;
    margin: 0 0 10px 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.image-modal-info p {
    color: #8b4a6b;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
}

#closeImageModal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#closeImageModal:hover {
    background: rgba(0,0,0,0.8);
    transform: scale(1.1);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease-out;
}

.modal-header {
    background: linear-gradient(135deg, #ffb6c1, #d85a7f);
    color: white;
    padding: 20px;
    border-radius: 8px 8px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
}

.close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ffe4e1;
}

.modal-body {
    padding: 30px;
}

.admin-auth h3,
.admin-panel h3 {
    color: #d85a7f;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

#loginForm,
#productForm {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.image-upload-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 2px dashed #ffb6c1;
    padding: 15px;
    border-radius: 10px;
    background: rgba(255, 182, 193, 0.1);
}

.image-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #ffb6c1, #d85a7f);
    color: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    border: 2px solid transparent;
}

.image-upload-label:hover {
    background: linear-gradient(135deg, #d85a7f, #ffb6c1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.4);
}

.image-upload-label i {
    font-size: 1.2rem;
}

.image-preview {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.image-preview img {
    max-width: 200px;
    max-height: 150px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.3);
    object-fit: cover;
}

.remove-image-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff4757;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 71, 87, 0.3);
}

.remove-image-btn:hover {
    background: #ff3742;
    transform: scale(1.1);
}

.or-divider {
    display: flex;
    align-items: center;
    margin: 10px 0;
    color: #8b4a6b;
    font-weight: 500;
}

.or-divider::before,
.or-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffb6c1, transparent);
}

.or-divider span {
    padding: 0 15px;
    background: white;
}

#loginForm input,
#productForm input,
#productForm select,
#productForm textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

#loginForm input:focus,
#productForm input:focus,
#productForm select:focus,
#productForm textarea:focus {
    outline: none;
    border-color: #d85a7f;
}

#loginForm button,
#productForm button {
    background: linear-gradient(135deg, #ffb6c1, #d85a7f);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#loginForm button:hover,
#productForm button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 182, 193, 0.4);
}

.product-list {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.admin-product-item {
    background-color: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-product-info h5 {
    color: #d85a7f;
    margin-bottom: 5px;
    font-weight: 600;
}

.admin-product-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 2px 0;
}

.delete-btn {
    background-color: #ff4757;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.delete-btn:hover {
    background-color: #ff3742;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #333, #555);
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #d85a7f;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d85a7f;
}

.contact-info-footer {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 0.9rem;
}

.contact-item-footer i {
    color: #d85a7f;
    font-size: 1.2rem;
    width: 20px;
}

.contact-item-footer i.fa-whatsapp {
    color: #25d366;
}

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

.social-links a {
    color: #ccc;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

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

.social-links a[href*="whatsapp"] {
    color: #25d366;
    transition: all 0.3s ease;
}

.social-links a[href*="whatsapp"]:hover {
    color: #128c7e;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #ccc;
}

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

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 182, 193, 0.9);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(255, 192, 203, 0.3);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(255, 182, 193, 0.3);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-logo h2 {
        font-size: 1.4rem;
        letter-spacing: 0.5px;
    }

    .logo-image {
        width: 35px;
        height: 35px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 1.5px;
    }

    .hero-tagline h2 {
        font-size: 1.8rem;
    }

    .hero-attributes {
        gap: 25px;
        margin-bottom: 25px;
    }

    .attribute-item i {
        font-size: 1.5rem;
    }

    .attribute-item span {
        font-size: 1rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-logo-image {
        width: 200px;
        height: 200px;
    }

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

    .policy-item {
        padding: 30px 20px;
    }

    .policy-icon {
        width: 60px;
        height: 60px;
    }

    .policy-icon i {
        font-size: 1.5rem;
    }

    .policy-item h3 {
        font-size: 1.2rem;
    }

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

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-filters {
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
    }

    .admin-product-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .nav-logo h2 {
        font-size: 1.2rem;
        letter-spacing: 0.3px;
    }

    .logo-image {
        width: 30px;
        height: 30px;
    }

    .nav-logo {
        gap: 8px;
    }

    .hero h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .hero-tagline h2 {
        font-size: 1.5rem;
    }

    .hero-attributes {
        gap: 20px;
        margin-bottom: 20px;
    }

    .attribute-item i {
        font-size: 1.3rem;
    }

    .attribute-item span {
        font-size: 0.9rem;
    }

    .hero-logo-image {
        width: 150px;
        height: 150px;
    }

    .policy-item {
        padding: 25px 15px;
    }

    .policy-icon {
        width: 50px;
        height: 50px;
    }

    .policy-icon i {
        font-size: 1.2rem;
    }

    .policy-item h3 {
        font-size: 1.1rem;
    }

    .policy-item p {
        font-size: 0.9rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
