* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    flex: 1;
}

.top-bar {
    background-color: #4aabc0;
    color: #fff;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-text {
    font-weight: 600;
    letter-spacing: 1px;
}

.social-icons a {
    color: #fff;
    margin-left: 15px;
    text-decoration: none;
    font-size: 14px;
}

.social-icons a:hover {
    opacity: 0.8;
}

header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: relative;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    padding: 10px 0;
    z-index: 2;
}

.logo a {
    text-decoration: none;
}

.logo h1 {
    color: #4d5b7c;
    font-size: 28px;
    font-weight: 700;
}

.nav-container {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

nav {
    margin-right: 30px;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 14px;
    display: block;
    padding: 5px 0;
}

nav ul li a:hover {
    color: #4aabc0;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s ease-in-out;
}

.header-buttons {
    display: flex;
    align-items: center;
}

.desktop-header-buttons {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.desktop-header-buttons a {
    display: inline-flex;
    align-items: center;
}

.mobile-only-buttons {
    display: none;
}

.desktop-header-buttons .login-btn,
.header-buttons .login-btn {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    margin-right: 15px;
    transition: color 0.3s;
}

.desktop-header-buttons .login-btn {
    display: inline-block;
    padding: 6px 14px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.desktop-header-buttons .login-btn:hover,
.header-buttons .login-btn:hover {
    color: #4aabc0;
}

.desktop-header-buttons .cart-btn,
.header-buttons .cart-btn {
    position: relative;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.desktop-header-buttons .cart-btn:hover,
.header-buttons .cart-btn:hover {
    color: #4aabc0;
}

.desktop-header-buttons .cart-btn i,
.header-buttons .cart-btn i {
    font-size: 18px;
    margin-right: 5px;
}

.desktop-header-buttons .cart-count-badge,
.header-buttons .cart-count-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #e74c3c;
    color: white;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .desktop-header-buttons {
        display: none;
    }
    
    .mobile-only-buttons {
        display: flex;
    }
    
    .header-buttons {
        position: absolute;
        right: 60px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .header-buttons .login-btn {
        font-size: 14px;
        margin-right: 15px;
    }
    
    .header-buttons .cart-btn {
        position: relative;
    }
    
    .header-buttons .cart-btn .cart-total {
        display: none;
    }
    
    .mobile-menu-toggle {
        margin-left: 15px;
    }
    
    .nav-container .header-buttons {
        display: none;
    }
}

.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 25px;
    color: #000;
    font-weight: 500;
    transition: all 0.3s ease;
}

.desktop-header-buttons .cart-btn {
    padding: 6px 14px;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 25px;
    color: #000;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cart-btn:hover, .desktop-header-buttons .cart-btn:hover {
    background-color: #000;
    color: #fff;
}

.cart-btn i {
    font-size: 1.2rem;
}

.cart-total {
    font-weight: 600;
}

.cart-count-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #e74c3c;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

@keyframes cartBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.cart-count-badge.animate {
    animation: cartBounce 0.3s ease;
}

.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Slider Responsive Styles */
@media (max-width: 992px) {
    .slider-container {
        height: 400px;
    }
    
    .slide-image img {
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    .slider-container {
        height: 300px;
    }
    
    .slide-image img {
        object-fit: contain;
    }
}

@media (max-width: 576px) {
    .slider-container {
        height: 200px;
    }
    
    .slide-image img {
        object-fit: contain;
    }
}

/* References Section */
.references {
    width: 100%;
    padding: 20px 0;
    margin: 20px 0;
    margin-top: -15px;
}

.reference-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.reference-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.reference-content h2 {
    position: absolute;
    top: 25%;
    left: 5%;
    color: white;
    font-size: 42px;
    font-weight: 700;
    max-width: 80%;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.reference-content p {
    position: absolute;
    top: 45%;
    left: 5%;
    color: white;
    font-size: 32px;
    font-weight: 400;
    font-style: italic;
    max-width: 80%;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
    .references {
        padding: 15px 0;
        margin: 15px 0;
    }
    
    .reference-content {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .references {
        padding: 10px 0;
        margin: 10px 0;
    }
    
    .reference-content {
        padding: 0 8px;
    }
}

@media (max-width: 576px) {
    .references {
        padding: 8px 0;
        margin: 8px 0;
        margin-top: -15px;
    }
    
    .reference-content {
        padding: 0 5px;
    }
    
    .reference-content img {
        border-radius: 8px;
    }
}

.category-boxes {
    padding: 0;
    margin-bottom: 30px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 50px;
}

.category-box {
    position: relative;
    overflow: hidden;
    background-color: #334862;
    height: 200px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.category-box a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.category-title {
    text-align: center;
}

.category-box h2 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 10px;
}

.title-line {
    display: block;
    width: 40px;
    height: 2px;
    background-color: hsla(0,0%,100%,.3);
    margin: 0 auto;
}

.category-box:hover {
    background-color: #4a6285;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.featured-products {
    padding: 80px 0;
}

.featured-products h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #333;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    color: #334862;
    margin: 10px 0;
    font-size: 1.1em;
    text-align: center;
}

.product-card p {
    padding: 0 15px;
    color: #666;
    margin-bottom: 10px;
}

.product-card .price {
    display: block;
    padding: 0 15px 15px;
    font-weight: 700;
    color: #4aabc0;
    font-size: 18px;
    margin-bottom: -20px;
    margin-left: 15px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.product-card .btn {
    margin: 0 15px 15px;
    display: block;
    text-align: center;
}

.price {
    text-align: center;
    margin-top: 10px;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
    font-size: 0.9em;
}

.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.slider-nav:hover {
    background: #1a2533;
}

.slider-nav:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}

.about {
    background-color: #f0f8ff;
    padding: 80px 0;
}

.about h2 {
    text-align: center;
    margin-bottom: 70px;
    font-size: 32px;
    margin-top: -50px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.feature h3 {
    margin-bottom: 15px;
    color: #4aabc0;
}

.kategori-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

footer {
    margin-top: auto;
    background-color: #333;
    color: #fff;
    padding: 40px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
}

.footer-content p {
    margin: 0;
    line-height: 1.6;
}

.footer-section {
    max-width: 600px;
    text-align: center;
}

.footer-section h3 {
    margin-bottom: 10px;
    font-size: 24px;
    color: #fff;
}

.footer-line {
    display: block;
    width: 50px;
    height: 2px;
    background-color: hsla(0,0%,100%,.3);
    margin: 0 auto 20px;
}

.footer-section p {
    line-height: 1.8;
    color: #ccc;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #ccc;
}

@media (max-width: 992px) {
    .header-buttons {
        display: flex;
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
        align-items: center;
    }
    
    .header-buttons .login-btn {
        font-size: 14px;
        font-weight: 600;
        padding: 5px 10px;
        margin-right: 10px;
        display: flex;
        align-items: center;
        color: #333;
        text-decoration: none;
    }
    
    .header-buttons .cart-btn {
        width: 70px;
        height: 37px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        background: #fff;
        border-radius: 10%;
        color: #333;
    }
    
    .header-buttons .cart-btn .cart-total {
        display: none;
    }
    
    .header-buttons .cart-btn .cart-count-badge {
        position: absolute;
        top: -5px;
        right: -5px;
        width: 18px;
        height: 18px;
        font-size: 10px;
        background: #e74c3c;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-toggle {
        margin-left: 15px;
    }
    
    .nav-container .header-buttons {
        display: none;
    }

    nav {
        width: 100%;
        margin-top: -30rem;
        margin-left: -2rem;
    }

    .mobile-menu-toggle {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav-container {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: #fff;
        padding: 20px;
        transition: 0.3s;
        z-index: 999;
        box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    }

    .nav-container.active {
        left: 0;
    }

    nav {
        width: 100%;
        margin-top: -30rem;
        margin-left: -2rem;
    }

    nav ul {
        flex-direction: column;
        margin: 0;
        padding: 0;
        width: 100%;
        list-style: none;
    }

    nav ul li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    nav ul li a {
        display: block;
        padding: 15px 0;
        color: #333;
        font-size: 15px;
        text-decoration: none;
    }

    li.header-buttons {
        border-bottom: none !important;
        padding-top: 10px;
    }

    .header-buttons .login-btn,
    .header-buttons .cart-btn {
        display: block;
        color: #333;
        font-size: 15px;
        text-decoration: none;
    }

    .header-buttons .cart-btn {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .cart-total {
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    .cart-count-badge {
        background: #ff6b6b;
        color: #fff;
        border-radius: 50%;
        padding: 2px 6px;
        font-size: 12px;
        margin-left: 5px;
    }

    .nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 24px;
        color: #333;
        cursor: pointer;
    }

    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        z-index: 998;
    }

    .overlay.active {
        display: block;
    }

    .slider-container {
        height: 400px;
    }
    
    .slide-image img {
        object-fit: contain;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 15px;
    }
    
    .product-slider-container,
    .new-products-container,
    .terea-products-container,
    .heets-products-container {
        padding: 0 10px;
    }
    
    .product-card {
        margin: 10px;
    }
    
    .product-card img {
        height: 200px;
    }

    .iqos-info {
        padding: 20px;
    }
    
    .iqos-info h3 {
        font-size: 20px;
        margin: 20px 0 10px;
    }
    
    .kategori-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 15px;
    }
    
    .faq-border {
        padding: 20px;
        margin: 15px;
    }
    
    .faq-item {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .logo h1 {
        font-size: 24px;
    }

    .nav-container {
        width: 100%;
        max-width: none;
    }

    .slider-container {
        height: 300px;
    }
    
    .slide-image img {
        object-fit: contain;
    }
    
    .category-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .category-box {
        height: 200px;
    }
    
    .product-slider .slider-nav,
    .new-products-slider .new-nav-btn,
    .terea-products-slider .terea-nav-btn,
    .heets-products-slider .heets-nav-btn {
        width: 30px;
        height: 30px;
    }
    
    .product-card {
        margin: 5px;
    }
    
    .product-card img {
        height: 180px;
    }
    
    .product-card h3 {
        font-size: 14px;
    }
    
    .kategori-grid {
        grid-template-columns: 1fr;
    }
    
    .category-item {
        margin-bottom: 15px;
    }
    
    .faq-intro h3 {
        font-size: 18px;
    }
    
    .faq-item h3 {
        font-size: 16px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .feature {
        text-align: center;
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .logo h1 {
        font-size: 24px;
    }

    .nav-container {
        width: 100%;
        max-width: none;
    }

    .slider-container {
        height: 200px;
    }
    
    .slide-image img {
        object-fit: contain;
    }
    
    .section-title {
        font-size: 20px;
        margin: 20px 0;
    }

    .product-card {
        margin: 5px 0;
    }
    
    .product-card img {
        height: 160px;
    }
    
    .product-card h3 {
        font-size: 13px;
        margin: 8px 0;
    }
    
    .price {
        font-size: 14px;
    }
    
    .iqos-info {
        padding: 15px;
    }
    
    .iqos-info h3 {
        font-size: 18px;
    }
    
    .iqos-info p,
    .iqos-info li {
        font-size: 14px;
    }
    
    .faq-border {
        padding: 15px;
        margin: 10px;
    }
    
    .faq-item {
        padding: 10px;
    }
    
    .faq-item p,
    .faq-item li {
        font-size: 14px;
    }
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.overlay.active {
    display: block;
}

.campaign-products {
    padding: 50px 0;
    background-color: #f8f8f8;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #334862;
}

.section-title:before,
.section-title:after {
    content: "";
    height: 1px;
    background-color: #e1e1e1;
    flex: 1;
    margin: 0 15px;
}

.product-slider {
    position: relative;
    max-width: 100%;
    padding: 0 40px;
    margin: 30px 0;
    overflow: hidden;
}

.product-slider-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    width: 100%;
    transform: translateX(0) !important;
    transition: none !important;
}

.product-slide, .new-slide, .terea-slide, .heets-slide {
    flex: 0 0 calc(25% - 15px);
    width: calc(25% - 15px);
    min-width: calc(25% - 15px);
    max-width: calc(25% - 15px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
    transform: translateX(0);
    display: block;
}

.slide-enter {
    opacity: 0;
    transform: translateX(20px);
}

.slide-exit {
    opacity: 0;
    transform: translateX(-20px);
}

.product-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    padding-bottom: 40px;
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 10px;
}

.product-card h3 {
    font-size: 16px;
    color: #333;
    margin: 5px 0 10px 0;
    min-height: 40px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.price {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: auto;
}

.old-price {
    display: block;
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
    margin-bottom: 3px;
}

.discount-badge {
    position: absolute;
    top: -5px;
    background: #e74c3ca6;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    z-index: 1;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #334862;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    z-index: 2;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

@media (max-width: 992px) {
    .product-slide,
    .new-slide,
    .terea-slide,
    .heets-slide {
        flex: 0 0 33.333%;
    }
}

@media (max-width: 768px) {
    .product-slide,
    .new-slide,
    .terea-slide,
    .heets-slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 576px) {
    .product-slide,
    .new-slide,
    .terea-slide,
    .heets-slide {
        flex: 0 0 100%;
    }
    
    .slider-nav,
    .new-nav-btn,
    .terea-nav-btn,
    .heets-nav-btn {
        display: none;
    }
}

@media (max-width: 1200px) {
    .product-slide, .new-slide, .terea-slide, .heets-slide {
        flex: 0 0 calc(33.333% - 15px);
        width: calc(33.333% - 15px);
        min-width: calc(33.333% - 15px);
        max-width: calc(33.333% - 15px);
    }
    
    .product-slider-container, 
    .new-products-container, 
    .terea-products-container, 
    .heets-products-container {
        gap: 22px;
    }
}

@media (max-width: 992px) {
    .product-slide, .new-slide, .terea-slide, .heets-slide {
        flex: 0 0 calc(50% - 15px);
        width: calc(50% - 15px);
        min-width: calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
    
    .product-slider-container, 
    .new-products-container, 
    .terea-products-container, 
    .heets-products-container {
        gap: 30px;
    }
    
    .product-card h3 {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .product-slide, .new-slide, .terea-slide, .heets-slide {
        flex: 0 0 calc(100% - 20px);
        width: calc(100% - 20px);
        min-width: calc(100% - 20px);
        max-width: calc(100% - 20px);
    }
    
    .product-card {
        min-height: 320px;
    }
    
    .product-card img {
        height: 150px;
    }
    
    .product-card h3 {
        min-height: 35px;
        margin: 5px 0;
    }
    
    .price {
        bottom: 0;
    }
}

@media (max-width: 576px) {
    .product-slider-container, 
    .new-products-container, 
    .terea-products-container, 
    .heets-products-container {
        padding: 0 10px;
    }
    
    .slider-nav, .new-nav-btn, .terea-nav-btn, .heets-nav-btn {
        width: 35px;
        height: 35px;
    }
}

.new-products-slider,
.terea-products-slider,
.heets-products-slider {
    position: relative;
    max-width: 100%;
    padding: 0 40px;
    margin: 30px 0;
    overflow: hidden;
}

.new-products-container,
.terea-products-container,
.heets-products-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    width: 100%;
    transform: translateX(0) !important;
    transition: none !important;
}

.new-nav-btn,
.terea-nav-btn,
.heets-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.new-prev-btn,
.terea-prev-btn,
.heets-prev-btn {
    left: 10px;
}

.new-next-btn,
.terea-next-btn,
.heets-next-btn {
    right: 10px;
}

.about-iqos {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.iqos-info {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    color: #333;
}

.iqos-info h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #4aabc0;
    font-size: 22px;
}

.iqos-info p {
    margin-bottom: 15px;
    text-align: justify;
}

.iqos-info ul, .iqos-info ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.iqos-info li {
    margin-bottom: 10px;
}

.iqos-info strong {
    color: #333;
    font-weight: 600;
}

.categories {
    padding: 60px 0;
    background-color: #fff;
}

.category-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.category-image {
    height: 250px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-item h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
    color: #fff;
    padding: 20px 15px;
    margin: 0;
    font-size: 18px;
    text-align: center;
}

@media (max-width: 992px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}

.faq-section {
    padding: 60px 0;
    background-color: #fff;
    margin-top: -60px;
}

.faq-border {
    position: relative;
    padding: 40px;
    border: 2px solid #4aabc0;
    border-radius: 10px;
    margin: 20px 0;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-intro {
    margin-bottom: 30px;
    text-align: center;
}

.faq-intro h3 {
    color: #4aabc0;
    font-size: 24px;
    margin-bottom: 15px;
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item h3 {
    color: #334862;
    font-size: 20px;
    margin-bottom: 15px;
}

.faq-item p, .faq-item li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

.faq-item ul, .faq-item ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.faq-item strong {
    color: #333;
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-border {
        padding: 25px 15px;
    }
    
    .faq-intro h3 {
        font-size: 20px;
    }
    
    .faq-item h3 {
        font-size: 18px;
    }
}

.product-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1.2rem;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem 0;
        margin-top: 22rem;
    }
}

.section-title {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin: 2rem 0;
    font-weight: 600;
}

.mt-5 {
    margin-top: 3rem;
}

/* Ürün Detay Sayfası */
.product-detail {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.product-images {
    flex: 0 0 50%;
    padding-right: 2rem;
}

.main-image {
    width: 100%;
    margin-bottom: 1rem;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.gallery {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.gallery img {
    width: 80px;
    height: 80px;
    border: 1px solid #eee;
    border-radius: 4px;
    cursor: pointer;
    object-fit: cover;
}

.gallery img:hover {
    border-color: #d4a373;
}

.product-info {
    flex: 1;
    padding: 0 1rem;
}

.product-info h1 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #333;
    font-family: 'Poppins', sans-serif;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eee;
}

.rating {
    margin-bottom: 10px;
    margin-top: -10px;
}

.stars {
    color: #ffa500;
    font-size: 1.4rem;
    letter-spacing: 2px;
}

.price-container {
    margin-bottom: 2rem;
}

.current-price {
    font-size: 2.2rem;
    font-weight: 600;
    color: #333;
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.product-options {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.option-group {
    margin-bottom: 15px;
}

.option-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

.form-select:focus {
    outline: none;
    border-color: #4aabc0;
    box-shadow: 0 0 0 2px rgba(74, 171, 192, 0.2);
}

.form-select:hover {
    border-color: #4aabc0;
}

.form-select option {
    padding: 10px;
}

.quantity-group {
    margin-bottom: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#quantity {
    width: 60px;
    height: 32px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.btn-add-to-cart {
    width: 100%;
    padding: 1rem;
    background: #d4a373;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.btn-add-to-cart:hover {
    background: #c49362;
}

.stock-info {
    margin-top: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 2rem;
}

.description, .features {
    margin-top: -3.5rem;
    line-height: 1.4;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.description h3, .features h3 {
    font-size: 1.2rem;
    margin-bottom: -2.25rem;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.description p, .features p {
    color: #666;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.description h4, .features h4 {
    color: #d4a373;
    font-family: 'Poppins', sans-serif;
    margin: 0.75rem 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 500;
}

.stock-code {
    margin-bottom: 0.5rem;
}

.stock-status a {
    color: #d4a373;
    text-decoration: none;
}

.stock-status a:hover {
    text-decoration: underline;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .product-detail {
        flex-direction: column;
    }

    .product-images {
        flex: none;
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .gallery img {
        width: 60px;
        height: 60px;
    }
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    margin-top: 10px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #d4a373;
}

.breadcrumb .separator {
    color: #666;
    margin: 0 0.25rem;
}

.breadcrumb .current {
    color: #999;
}

/* Auth Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background-color: #fff;
    margin: 15% auto;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

.auth-tabs {
    position: relative;
    display: flex;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.auth-tab {
    flex: 1;
    padding: 10px 20px;
    border: none;
    background: none;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-tab.active {
    color: #000;
    font-weight: 500;
    position: relative;
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
}

.auth-form {
    display: none;
    padding: 20px 0;
}

.auth-form.active {
    display: block;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.auth-button {
    width: 100%;
    padding: 12px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.auth-button:hover {
    background-color: #333;
}

.modal-header {
    padding-bottom: 0;
}

.modal-header .btn-close {
    margin: -0.5rem -0.5rem -0.5rem auto;
}

/* Hesabım Sayfası Stilleri */
.account-header {
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.account-header h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.account-header .subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.account-content {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    min-height: calc(100vh - 300px);
}

.account-sidebar {
    background: #fff;
    padding: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-bottom: none;
    margin-bottom: 0;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-details .username {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.user-details .user-id {
    color: #666;
    font-weight: normal;
}

.account-nav {
    margin-top: 20px;
    width: 100%;
}

.account-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.account-nav li {
    width: 100%;
    border-bottom: 1px solid #eee;
}

.account-nav li:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.account-nav li a {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}

.account-nav li.active a {
    background-color: #4aabc0;
    color: #fff;
    font-weight: 600;
    position: relative;
    width: 100%;
    border-radius: 5px;
}

.account-nav li:not(.active) a:hover {
    background-color: #f5f5f5;
    color: #4aabc0;
    border-radius: 5px;
}

.account-nav li a:hover {
    background: #f8f9fa;
    color: #007bff;
}

.account-nav li.active a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #007bff;
}

.account-main {
    flex: 1;
    padding: 0 30px;
}

.welcome-message {
    margin-bottom: 30px;
}

.welcome-message p {
    color: #333;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.6;
}

.welcome-message strong {
    font-weight: 600;
    color: #000;
}

.welcome-message a {
    color: #4aabc0;
    text-decoration: none;
    font-weight: 500;
}

.welcome-message a:hover {
    text-decoration: underline;
}

.account-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.account-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 25px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    text-align: center;
}

.account-button:hover {
    background: #4aabc0;
    color: #fff;
    border-color: #4aabc0;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .account-content {
        flex-direction: column;
    }
    
    .account-sidebar {
        flex: none;
        width: 100%;
        border-right: none;
        border-bottom: 2px solid #eee;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .account-main {
        padding: 15px;
    }
    
    .account-buttons {
        grid-template-columns: 1fr;
    }
}

/* Sepet Sayfası Stilleri */
.cart-page {
    padding: 50px 0;
}

.cart-header {
    margin-bottom: 40px;
    text-align: center;
}

.cart-header h1 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.cart-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
}

.cart-breadcrumb a {
    color: #4aabc0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cart-breadcrumb a:hover {
    color: #3d8f9f;
}

.cart-breadcrumb .separator {
    color: #ccc;
}

.cart-breadcrumb .current {
    color: #666;
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: 0 auto;
}

.empty-cart-icon {
    width: 120px;
    height: 120px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.empty-cart-icon i {
    font-size: 48px;
    color: #4aabc0;
}

.empty-cart h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.empty-cart p {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.shop-now-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #4aabc0;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #4aabc0;
}

.shop-now-btn:hover {
    background: #fff;
    color: #4aabc0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(74,171,192,0.2);
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

.cart-items {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    padding: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.cart-item:last-child {
    border-bottom: none;
}

.item-image {
    width: 120px;
    height: 120px;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.item-details {
    position: relative;
}

.item-details h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.item-color {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.item-price {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: #f5f5f5;
}

.quantity-input {
    width: 50px;
    height: 30px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
}

.item-subtotal {
    font-size: 14px;
    color: #666;
}

.item-subtotal span {
    font-weight: 600;
    color: #333;
}

.remove-item {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

@media (max-width: 576px) {
    .remove-item {
        position: absolute;
        top: 25px;
        right: -15px;
        border-radius: 50%;
        padding: 8px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.remove-item:hover {
    color: #e74c3c;
}

.cart-summary {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    padding: 20px;
    height: fit-content;
}

.cart-summary h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
}

.summary-row.total {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    border-top: 1px solid #eee;
    margin-top: 15px;
    padding-top: 15px;
}

.checkout-btn {
    display: inline-block;
    width: 100%;
    padding: 15px 30px;
    background-color: #4aabc0;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.checkout-btn:hover {
    background-color: #3d8a9a;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 992px) {
    .cart-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .cart-item {
        grid-template-columns: 1fr;
    }
    
    .item-image {
        width: 100%;
        height: 305px;
    }
}

/* Ödeme Sayfası Stilleri */
.checkout-page {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    padding: 30px;
    margin: 30px 0;
}

.checkout-header {
    margin-bottom: 40px;
    text-align: center;
}

.checkout-header h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.checkout-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    position: relative;
}

.step {
    background: #f8f8f8;
    color: #666;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    margin: 0 30px;
}

.step.completed {
    background: #4aabc0;
    color: #fff;
}

.step.active {
    background: #333;
    color: #fff;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    width: 30px;
    height: 2px;
    background: #ddd;
}

.checkout-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.billing-shipping {
    padding-right: 40px;
    border-right: 1px solid #eee;
}

.section-title {
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 24px;
    color: #333;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    height: 45px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #4aabc0;
    box-shadow: 0 0 0 2px rgba(74, 171, 192, 0.1);
    outline: none;
}

.address-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.address-row .form-group {
    margin-bottom: 0;
}

.address-row input {
    margin-top: 0;
}

.order-summary .section-title {
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.order-summary {
    background: #f8f8f8;
    padding: 25px;
    border-radius: 10px;
    position: sticky;
    top: 20px;
}

.order-items {
    margin-bottom: 25px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.item-name {
    font-size: 14px;
    color: #333;
}

.item-quantity {
    color: #666;
    margin-left: 5px;
}

.item-total {
    font-weight: 600;
    color: #333;
}

.order-totals {
    margin-top: 20px;
}

.shipping-options {
    margin-top: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.shipping-methods {
    margin-top: 15px;
}

.shipping-method {
    display: block;
    padding: 12px;
    margin-bottom: 10px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shipping-method:hover {
    background: #f8f8f8;
    border-color: #ddd;
}

.shipping-method input[type="radio"] {
    margin-right: 10px;
}

.method-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 25px;
}

.method-name {
    font-size: 13px;
    color: #333;
}

.method-price {
    font-weight: 600;
    color: #333;
    margin-left: 15px;
}

.subtotal,
.total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    font-size: 14px;
}

.total {
    border-top: 1px solid #ddd;
    margin-top: 15px;
    padding-top: 15px;
    font-size: 18px;
    font-weight: 600;
}

.payment-info {
    margin-top: 25px;
    padding: 15px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
}

.payment-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.privacy-policy {
    margin-top: 20px;
    font-size: 12px;
    color: #666;
    line-height: 1.6;
}

.place-order-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: #4aabc0;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.place-order-btn:hover {
    background: #3d8a9a;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .checkout-content {
        grid-template-columns: 1fr;
    }

    .billing-shipping {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-bottom: 30px;
    }

    .order-summary {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .checkout-page {
        padding: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .step {
        padding: 8px 15px;
        margin: 0 15px;
        font-size: 12px;
    }
}

.order-success {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    padding: 40px;
    margin: 30px 0;
    text-align: center;
}

.order-success h1 {
    color: #4aabc0;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
}

.order-success-details {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.order-success-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.order-success-details li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #666;
    font-size: 14px;
}

.order-success-details li:last-child {
    border-bottom: none;
}

.order-success-details li strong {
    color: #333;
}

.bank-details {
    margin-top: 30px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 8px;
    text-align: left;
}

.bank-details h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.bank-info {
    margin-bottom: 20px;
}

.bank-info p {
    margin: 5px 0;
    color: #666;
    font-size: 14px;
}

.bank-info strong {
    color: #333;
    font-weight: 600;
}

.order-note {
    margin-top: 20px;
    padding: 15px;
    background: #fff3cd;
    border: 1px solid #ffeeba;
    border-radius: 8px;
    color: #856404;
    font-size: 14px;
    line-height: 1.5;
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media screen and (max-width: 1200px) {
    .product-card {
        width: calc(33.33% - 20px);
        margin: 10px;
    }
    
    .product-slider-container,
    .new-products-container,
    .terea-products-container,
    .heets-products-container {
        padding: 0 15px;
    }
}

@media screen and (max-width: 992px) {
    .product-card {
        width: calc(50% - 20px);
    }
    
    .section-title {
        font-size: 24px;
        margin: 20px 0;
    }
    
    .slider-nav,
    .new-nav-btn,
    .terea-nav-btn,
    .heets-nav-btn {
        width: 35px;
        height: 35px;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    
    .product-card {
        width: calc(100% - 20px);
        margin: 10px;
    }
    
    .product-card img {
        max-width: 100%;
        height: auto;
    }
    
    .product-card h3 {
        font-size: 16px;
        margin: 8px 0;
    }
    
    .price {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .old-price {
        margin-right: 0;
        margin-bottom: -41px;
        font-size: 14px;
    }
    
    .new-price {
        font-size: 16px;
    }
    
    .discount-badge {
        padding: 4px 8px;
        font-size: 12px;
        left: 105px;
        top: 0rem;
    }
}

@media screen and (max-width: 576px) {
    .section-title {
        font-size: 20px;
        margin: 15px 0;
    }
    
    .slider-nav,
    .new-nav-btn,
    .terea-nav-btn,
    .heets-nav-btn {
        width: 30px;
        height: 30px;
    }
    
    .product-slider-container,
    .new-products-container,
    .terea-products-container,
    .heets-products-container {
        padding: 0 10px;
    }
}

.product-card {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.product-card h3 {
    font-size: 16px;
    color: #333;
    margin: 5px 0 10px 0;
    min-height: 40px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.price {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: auto;
}

.new-price {
    display: block;
    color: #e74c3c;
    font-weight: 600;
    font-size: 16px;
    margin-left: -5px;
}

@media (max-width: 992px) {
    .product-card .price {
        font-size: 16px;
        padding: 0 10px 10px;
    }
}

@media (max-width: 768px) {
    .product-card .price {
        margin-bottom: -15px;
        margin-left: 10px;
        padding: 0 10px 10px;
    }
}

@media (max-width: 576px) {
    .product-card .price {
        font-size: 15px;
        margin-bottom: 10px;
        padding: 0 8px 8px;
    }
}

.product-slider-container,
.new-products-container,
.terea-products-container,
.heets-products-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-slider-container::-webkit-scrollbar,
.new-products-container::-webkit-scrollbar,
.terea-products-container::-webkit-scrollbar,
.heets-products-container::-webkit-scrollbar {
    display: none;
}

@media (max-width: 768px) {
    .product-slider-container,
    .new-products-container,
    .terea-products-container,
    .heets-products-container {
        padding: 0 10px;
        margin: 0 -10px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .product-slide,
    .new-slide,
    .terea-slide,
    .heets-slide {
        scroll-snap-align: start;
        padding: 0 5px;
    }
    
    .slider-nav,
    .new-nav-btn,
    .terea-nav-btn,
    .heets-nav-btn {
        display: none;
    }
}

@media (max-width: 992px) {
    .product-card {
        min-height: 320px;
        padding: 12px;
    }
}

@media (max-width: 768px) {
    .product-card {
        min-height: 300px;
        padding: 10px;
    }
    
    .product-card img {
        max-height: 180px;
    }
}

@media (max-width: 576px) {
    .product-card {
        min-height: 280px;
        padding: 8px;
        margin-bottom: 15px;
    }
    
    .product-card img {
        max-height: 150px;
    }
}