@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Mulish:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Mulish', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

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

/* Top Banner */
.top-banner {
    background-color: #E91E63;
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* Navbar */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    padding: 0 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.logo img {
    height: 50px;
}

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

.nav-links a {
    color: #333;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #E91E63;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 20px;
    color: #333;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #E91E63;
    color: white;
    font-size: 11px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.7s ease;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(233,30,99,0.9), rgba(233,30,99,0.6), transparent);
}

.slide-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.slide-content span {
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0.9;
}

.slide-content h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 18px;
    max-width: 500px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-white {
    background-color: white;
    color: #E91E63;
}

.btn-white:hover {
    background-color: #f5f5f5;
}

.btn-pink {
    background-color: #E91E63;
    color: white;
}

.btn-pink:hover {
    background-color: #C2185B;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #E91E63;
    color: #E91E63;
}

.btn-outline:hover {
    background-color: #E91E63;
    color: white;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 20px;
    z-index: 20;
    transition: background 0.3s;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav:hover {
    background: rgba(255,255,255,0.4);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.hero-slider .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: auto;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dots .dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* Features Section */
.features {
    background-color: #f9f9f9;
    padding: 40px 20px;
    border-bottom: 1px solid #eee;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(233,30,99,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E91E63;
    font-size: 20px;
}

.feature h4 {
    font-family: 'Mulish', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
}

.feature p {
    font-size: 13px;
    color: #777;
}

/* Section Styles */
.section {
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header span {
    color: #E91E63;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 40px;
    color: #333;
    margin-top: 10px;
}

.section-header .divider {
    width: 60px;
    height: 3px;
    background: #E91E63;
    margin: 20px auto 0;
}

/* Categories Grid */
.categories-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3), transparent);
    transition: background 0.3s;
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(233,30,99,0.8), rgba(233,30,99,0.4), transparent);
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    color: white;
}

.category-content h3 {
    font-size: 28px;
    margin-bottom: 5px;
}

.category-content p {
    font-size: 14px;
    opacity: 0.8;
}

/* Products Grid */
.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: white;
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.3s;
}

.product-card:hover {
    border-color: #E91E63;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-bestseller {
    background: #E91E63;
    color: white;
}

.badge-new {
    background: #333;
    color: white;
}

.badge-popular {
    background: #E91E63;
    color: white;
}

.badge-sale {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4444;
    color: white;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-buy-btn {
    background: #E91E63;
    color: white;
    padding: 12px 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transform: translateY(20px);
    transition: all 0.3s;
}

.product-card:hover .quick-buy-btn {
    transform: translateY(0);
}

.quick-buy-btn:hover {
    background: #C2185B;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-card:hover .product-info h3 {
    color: #E91E63;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.product-rating .stars {
    color: #E91E63;
    font-size: 12px;
}

.product-rating span {
    font-size: 12px;
    color: #999;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-price .price {
    font-size: 18px;
    font-weight: 600;
    color: #E91E63;
}

.product-price .old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

/* Deal Section */
.deal-section {
    background: #fff;
    padding: 80px 20px;
}

.deal-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.deal-image {
    position: relative;
}

.deal-image img {
    width: 100%;
    border: 4px solid rgba(233,30,99,0.2);
}

.deal-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 4px solid rgba(233,30,99,0.3);
}

.deal-content span {
    color: #E91E63;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.deal-content h2 {
    font-size: 50px;
    color: #333;
    margin: 15px 0 20px;
}

.deal-content p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.countdown {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.countdown-item {
    width: 80px;
    height: 80px;
    border: 2px solid #E91E63;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.countdown-item .number {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #E91E63;
}

.countdown-item .label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.deal-price .old {
    font-size: 24px;
    color: #999;
    text-decoration: line-through;
}

.deal-price .new {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #E91E63;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
}

.footer-divider {
    height: 4px;
    background: #E91E63;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #999;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #E91E63;
    color: white;
}

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    margin-bottom: 25px;
}

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

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

.footer-section ul a {
    color: #999;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #999;
    font-size: 14px;
}

.footer-contact li i {
    color: #E91E63;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #666;
    font-size: 13px;
}

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

.footer-bottom-links a {
    color: #666;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #E91E63;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(37,211,102,0.4);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 30px rgba(0,0,0,0.2);
    z-index: 2000;
    transition: right 0.3s;
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    right: 0;
}

.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.cart-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
}

.cart-header h3 i {
    color: #E91E63;
}

.cart-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

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

.cart-empty i {
    font-size: 60px;
    margin-bottom: 20px;
    color: #ddd;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f9f9f9;
    margin-bottom: 15px;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.cart-item-info .price {
    color: #E91E63;
    font-weight: 600;
}

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

.cart-item-qty button {
    width: 25px;
    height: 25px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    font-size: 14px;
}

.cart-item-qty span {
    width: 30px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 18px;
}

.cart-item-remove:hover {
    color: #E91E63;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.cart-totals {
    margin-bottom: 20px;
}

.cart-totals div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.cart-totals .total {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.cart-totals .total span:last-child {
    color: #E91E63;
}

.cart-footer .btn {
    width: 100%;
    text-align: center;
}

.cart-footer .note {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 10px;
}

/* Page Header */
.page-header {
    background: #E91E63;
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 16px;
    opacity: 0.9;
}

/* Breadcrumb */
.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-size: 14px;
    color: #999;
}

.breadcrumb a {
    color: #999;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #E91E63;
}

.breadcrumb span {
    color: #E91E63;
}

/* Checkout Page */
.checkout-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.checkout-form {
    background: white;
}

.form-section {
    background: white;
    border: 1px solid #eee;
    padding: 30px;
    margin-bottom: 20px;
}

.form-section h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #333;
}

.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-size: 14px;
    color: #555;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border: 1px solid #eee;
    background: #f9f9f9;
    cursor: pointer;
}

.payment-option input {
    width: auto;
}

.payment-option i {
    color: #E91E63;
    font-size: 20px;
}

.order-summary {
    background: white;
    border: 1px solid #eee;
    padding: 30px;
    position: sticky;
    top: 100px;
}

.order-summary h3 {
    font-size: 20px;
    margin-bottom: 25px;
}

.order-items {
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.order-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.order-item-info h4 {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.order-item-info p {
    font-size: 13px;
    color: #999;
}

.order-item-price {
    color: #E91E63;
    font-weight: 600;
}

.order-totals {
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.order-totals div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.order-totals .order-total {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    padding-top: 15px;
    border-top: 1px solid #eee;
    margin-top: 10px;
}

.order-totals .order-total span:last-child {
    color: #E91E63;
}

.trust-badges {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.trust-badges div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #666;
}

.trust-badges i {
    color: #E91E63;
}

/* Contact Page */
.contact-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

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

.contact-form {
    background: white;
    border: 1px solid #eee;
    padding: 40px;
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

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

.contact-card {
    background: white;
    border: 1px solid #eee;
    padding: 40px;
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: rgba(233,30,99,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E91E63;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-item p,
.contact-item a {
    color: #666;
    font-size: 14px;
}

.contact-item a:hover {
    color: #E91E63;
}

.whatsapp-card {
    background: rgba(37,211,102,0.1);
    border: 1px solid rgba(37,211,102,0.3);
    padding: 30px;
}

.whatsapp-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.whatsapp-card p {
    color: #666;
    margin-bottom: 20px;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    background: #20bd5a;
}

/* About & Shipping Pages */
.content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.content-card {
    background: white;
    border: 1px solid #eee;
    padding: 40px;
    margin-bottom: 30px;
}

.content-card-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.content-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(233,30,99,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E91E63;
    font-size: 20px;
    flex-shrink: 0;
}

.content-card h3 {
    font-size: 24px;
}

.content-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-card ul {
    color: #666;
    margin-left: 20px;
    line-height: 2;
}

.shipping-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.shipping-option {
    padding: 20px;
    border: 1px solid rgba(233,30,99,0.2);
    background: #fafafa;
}

.shipping-option h4 {
    color: #E91E63;
    margin-bottom: 10px;
}

.shipping-option p {
    font-size: 14px;
    margin-bottom: 5px;
}

/* Product Detail Page */
.product-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.product-gallery {
    position: relative;
}

.product-gallery img {
    width: 100%;
    border: 1px solid #eee;
}

.product-gallery .badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    background: #E91E63;
    color: white;
}

.product-details h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.product-details .rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.product-details .rating .stars {
    color: #E91E63;
}

.product-details .rating span {
    color: #999;
    font-size: 14px;
}

.product-details .price-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.product-details .price {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #E91E63;
}

.product-details .old-price {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.product-details .save-badge {
    background: #ff4444;
    color: white;
    padding: 5px 15px;
    font-size: 13px;
    text-transform: uppercase;
}

.product-details .description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.product-features span {
    padding: 8px 15px;
    background: #f5f5f5;
    border: 1px solid #eee;
    font-size: 13px;
    color: #555;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.quantity-selector .qty-controls {
    display: flex;
    border: 1px solid #ddd;
}

.quantity-selector button {
    width: 45px;
    height: 45px;
    background: white;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
}

.quantity-selector button:hover {
    background: #f5f5f5;
}

.quantity-selector input {
    width: 50px;
    height: 45px;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
    font-size: 16px;
}

.add-to-cart-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.product-benefits {
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.product-benefits div {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #666;
    font-size: 14px;
}

.product-benefits i {
    color: #E91E63;
}

/* Success Message */
.success-message {
    max-width: 600px;
    margin: 60px auto;
    padding: 60px;
    text-align: center;
    background: white;
    border: 1px solid #eee;
}

.success-message .icon {
    width: 80px;
    height: 80px;
    background: rgba(76,175,80,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.success-message .icon i {
    font-size: 40px;
    color: #4CAF50;
}

.success-message h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.success-message p {
    color: #666;
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }
    
    .slide-content h1 {
        font-size: 36px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .deal-container {
        grid-template-columns: 1fr;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .shipping-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .countdown {
        flex-wrap: wrap;
    }
}
