﻿/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2021 @codewithsadee 
 */





/*-----------------------------------*\
  #VARIABLE
\*-----------------------------------*/

:root {
    /**
   * Colors
   */

    --onyx: hsl(0, 0%, 25%);
    --azure: hsl(219, 77%, 60%);
    --white: hsl(0, 0%, 100%);
    --platinum: hsl(0, 0%, 91%);
    --gainsboro: hsl(0, 0%, 90%);
    --red-salsa: hsl(0, 77%, 60%);
    --dim-gray: hsl(0, 0%, 39%);
    --davys-gray: hsl(0, 0%, 30%);
    --spanish-gray: hsl(0, 0%, 62%);
    --quick-silver: hsl(0, 0%, 64%);
    /**
   * Typography
   */

    --fs-28: 28px;
    --fs-24: 24px;
    --fs-18: 18px;
    --fs-15: 15px;
    --fs-14: 14px;
    --fw-5: 500;
    --fw-6: 600;
    --fw-7: 700;
    /**
   * Others 
   */

    --px: 60px;
    --radius: 5px;
}




 


/*-----------------------------------*\
  #MAIN STYLE
\*-----------------------------------*/




/**
 * main container 
 */
 

.heading {
    font-size: 22px;
    font-weight: 450;
    color: var(--onyx);
    border-bottom: 1px solid var(--gainsboro);
    padding: 15px var(--px);
    display: flex;
    align-items: center;
    gap: 20px;
}

    .heading ion-icon {
        font-size: 27px;
    }

.item-flex {
    display: flex;
    flex-grow: 1;
}

/**
 * checkout section style 
 */

.checkout {
    width: 65%;
    padding: 40px var(--px);
    background: var(--white);
    border-right: 1px solid var(--gainsboro);
}

.section-heading {
    color: var(--onyx);
    margin-bottom: 27px;
    font-size: 22px;
    font-weight: 400;
}

.payment-form {
    margin-bottom: 40px;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

    .payment-method .method {
        border: 1px solid var(--quick-silver);
        border-radius: var(--radius);
        width: 50%;
        display: flex;
        align-items: center;
        padding: 15px 30px;
        gap: 20px;
        cursor: pointer;
    }

    .payment-method .selected {
        border-color: var(--azure);
    }

    .payment-method .method ion-icon {
        font-size: 20px;
    }

    .payment-method .method .checkmark {
        margin-left: auto;
        color: var(--quick-silver);
    }

    .payment-method .method .fill {
        color: var(--azure);
    }

.label-default {
    padding-left: 2px;
    margin-bottom: 3px;
    font-size: var(--fs-14);
    color: var(--spanish-black);
}

.input-default {
    background: #f5f5f5;
    border-radius: 80px;
    color: #333;
}

.payment-form input {
    padding: 10px 15px;
    font-size: var(--fs-18);
    font-weight: var(--fw-5);
}

.cardholder-name
{
    margin-bottom: 20px;
}

    .card-number input,
    .cvv input {
        letter-spacing: 3px;
    }

    .input-flex {
        display: flex;
        align-items: center;
        gap: 30px;
    }

        .input-flex .expire-date,
        .input-flex .cvv {
            width: 50%;
        }

    .expire-date .input-flex {
        color: var(--spanish-gray);
        gap: 13px;
    }

        .expire-date .input-flex input {
            text-align: center;
        }

    .btn {
        border-radius: var(--radius);
    }

        .btn:active {
            transform: scale(0.99);
        }

        .btn:focus {
            color: white;
            background: var(--azure);
            outline: 2px solid var(--azure);
            outline-offset: 2px;
        }

    .btn-primary {
        background: var(--azure);
        font-weight: var(--fw-5);
        color: white;
        padding: 13px 45px;
    }

        .btn-primary b {
            margin-right: 8px;
        }


    /**
 * cart section style
 */

    .cart1296 {
        width: 40%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .cart-item-box1296 { 
        margin-bottom: auto;
    }

    .product-card:not(:last-child) {
        margin-bottom: 20px;
    }

    .product-card .card {
        position: relative;
        display: flex;
        align-items: flex-start;
        gap: 20px;
        border-color: white;
    }

    .card .product-img {
        border-radius: var(--radius);
    }

    .card .detail .product-name {
        font-weight: var(--fw-6);
        font-size: var(--fs-15);
        color: var(--dim-gray);
        margin-bottom: 10px;
    }

    .card .detail .wrapper {
        display: flex;
        gap: 20px;
    }

    .product-qty {
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .product-qty button {
            background: var(--platinum);
            width: 20px;
            height: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .product-qty button:active,
            .product-close-btn:active ion-icon {
                transform: scale(0.95);
            }

            .product-qty button ion-icon {
                --ionicon-stroke-width: 60px;
                font-size: 10px;
            }

    .product-close-btn {
        position: absolute;
        top: 0;
        right: 0;
    }

        .product-close-btn ion-icon {
            font-size: 25px;
            color: var(--quick-silver);
        }

        .product-close-btn:hover ion-icon {
            color: var(--red-salsa);
        }

    .discount-token {
        padding: 40px var(--px);
        border-top: 1px solid var(--gainsboro);
        border-bottom: 1px solid var(--gainsboro);
    }

    .wrapper-flex {
        display: flex;
        align-items: center;
        gap: 30px;
    }

        .wrapper-flex input {
            padding: 12px 15px;
            font-weight: var(--fw-6);
            letter-spacing: 2px;
        }

    .btn-outline {
        padding: 10px 25px;
        border: 1px solid var(--azure);
        color: var(--azure);
    }

        .btn-outline:hover {
            background: var(--azure);
            color: var(--white);
        }

    .amount {
        padding: 40px var(--px);
    }

        .amount > div {
            display: flex;
            justify-content: space-between;
        }

            .amount > div:not(:last-child) {
                margin-bottom: 10px;
            }

        .amount .total {
            font-size: var(--fs-18);
            font-weight: var(--fw-7);
            color: var(--onyx);
        }



    .aciklama {
        position: relative;
        display: inline-block;
    }

        .aciklama::after {
            content: attr(data-title);
            position: absolute;
            top: -50px;
            left: 80px;
            padding: 45px 15px 15px 15px;
            opacity: 0;
            word-wrap: break-word;
            background: #fff url(header.png) no-repeat;
            background-size: 101% 25%;
            font-size: 14px;
            height: auto;
            width: 400px;
            -moz-box-shadow: 0 0 4px #222;
            -webkit-box-shadow: 0 0 4px #222;
            box-shadow: 0 0 4px #222;
            pointer-events: none;
        }

        .aciklama:hover::after {
            opacity: 1;
            -webkit-transition: opacity 0.3s;
            -moz-transition: opacity 0.3s;
            transition: opacity 0.3s;
            pointer-events: auto;
        }


         


 

body1296 {
    font-family: Arial, sans-serif;
    background-color: white;
    margin: 0;
    padding: 0;
}

.container1296 {
    max-width: 600px;
    margin: 8px auto;
    padding: 3px;
    background: white;
    border-radius: 10px;
}

.form-group1296 {
    margin-bottom: 10px;
}

    .form-group1296 label {
        display: block;
        font-weight: bold;
        margin-bottom: 5px;
        color: gray;
    }

    .form-group1296 input,
    .form-group1296 select {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        box-sizing: border-box;
    }

.form-flex1296 {
    display: flex;
    gap: 20px;
}

    .form-flex1296 .form-group1296 {
        flex: 1;
    }

.card-preview1296 {
    margin: 20px auto;
    width: 300px;
    height: 100px;
    background-color: #2d2d2d;
    border-radius: 10px;
    color: white;
    position: relative;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.col-sm-7 {
    color: #20376d;
    align-items: center;
    text-align: center;
    width:auto
}

.col-sm-8 {
    color: #20376d;
    align-items: center;
    text-align: left;
    /*margin-left: 35%;*/
}

.card-number1296 {
    font-size: 18px;
    letter-spacing: 2px;
}

.card-holder1296 {
    font-size: 16px;
    text-transform: uppercase;
}

.card-expiry1296 {
    font-size: 16px;
}

.bottom-section1296 {
    display: flex;
    justify-content: space-between;
}

.submit-button1296 {
    margin-top: 20px;
    text-align: center;
}

    .submit-button1296 button {
        padding: 10px 20px;
        background-color: #28a745;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

        .submit-button1296 button:hover {
            background-color: #218838;
        }


.button3 {
    padding: 12px 20px;
    background-color: #20376d;
    border: 2px solid #20376d;
    color: white;
    text-transform: uppercase;
    font-family: sans-serif, serif;
    font-size: 11px; 
    letter-spacing: 0px;
    border-radius: 10px;
    cursor: pointer;  
    margin: 12px;
}
#hero-section {
    height: 100vh;
}

.video-wrapper {
    z-index: 1;
}

@media (max-width: 768px) {
    #hero-section {
        height: auto;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .video-wrapper {
        position: relative;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    #hero-video {
        object-fit: contain !important;
    }
}